We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79152e6 commit 25b625aCopy full SHA for 25b625a
app/build.gradle
@@ -28,6 +28,7 @@ android {
28
minifyEnabled = true
29
shrinkResources = true
30
signingConfig = signingConfigs.release
31
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'),'proguard-rules.pro'
32
}
33
34
app/proguard-rules.pro
@@ -0,0 +1,7 @@
1
+-keep class com.openipc.mavlink.MavlinkData { *; }
2
+-keep interface com.openipc.mavlink.MavlinkUpdate { *; }
3
+-keep class * implements com.openipc.mavlink.MavlinkUpdate { *; }
4
+-keep class com.openipc.mavlink.MavlinkNative { *; }
5
+-keepclasseswithmembernames class * {
6
+ native <methods>;
7
+}
0 commit comments