File tree Expand file tree Collapse file tree 5 files changed +196
-181
lines changed Expand file tree Collapse file tree 5 files changed +196
-181
lines changed Original file line number Diff line number Diff line change
1
+ ## master
2
+
3
+ * Added Proguard rules to protect Flutter bridge class and method names from getting obfuscated when the minifyEnabled flag is set to true.
4
+
1
5
## v9.1.0 (2020-03-19)
2
6
3
7
* Bump Native SDKs to v9.1
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ android {
27
27
defaultConfig {
28
28
minSdkVersion 16
29
29
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
30
+ consumerProguardFiles ' proguard-rules.txt'
30
31
}
31
32
lintOptions {
32
33
disable ' InvalidPackage'
Original file line number Diff line number Diff line change
1
+ -keep class com.instabug.instabugflutter.** {*;}
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ android {
35
35
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
36
36
applicationId " com.instabug.instabugflutterexample"
37
37
minSdkVersion 16
38
- targetSdkVersion 27
38
+ targetSdkVersion 29
39
39
versionCode flutterVersionCode. toInteger()
40
40
versionName flutterVersionName
41
41
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
You can’t perform that action at this time.
0 commit comments