Merge pull request #206 from hyb1996/new_ui

add module inrt(independent app runtime)
This commit is contained in:
Stardust
2017-07-02 14:22:48 +08:00
committed by GitHub
2 changed files with 9 additions and 1 deletions

View File

@@ -17,10 +17,14 @@ android {
} }
buildTypes { buildTypes {
release { debug {
minifyEnabled false minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
} }
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
} }
} }

View File

@@ -23,3 +23,7 @@
# If you keep the line number information, uncomment this to # If you keep the line number information, uncomment this to
# hide the original source file name. # hide the original source file name.
#-renamesourcefileattribute SourceFile #-renamesourcefileattribute SourceFile
-dontwarn org.mozilla.javascript.**
-dontwarn jackpal.androidterm.**
-keep class org.mozilla.javascript.** { *; }