我正在创建一个外部模块,或者我应该说一个现有移动项目应用程序的库,因为我无法调整其内部(代码,配置等),
这个库的唯一目的就是执行API调用(即在服务器和客户端项目(app)之间接受和返回数据),它在开发时工作得非常好,但是当我试图构建库时方式
gradlew clean build generateRelease --stacktrace
我在stacktrace上有这些错误
error: cannot find symbol
@SerializedName("FirstName")
^
我发现改造确实有
minifyEnabled true
然后我学习了关于proguard规则的事情
,使用来自不同来源和不同测试的这些线,
-keep class com.google.code.gson.** { *; }
-keep class com.google.code.gson.annotations** { *; }
-keep class retrofit2.** { *; }
-keepclassmembernames interface * {
@retrofit.http.* <methods>;
}
-keep class retrofit2.** { *; }
-keepclassmembernames interface * {
@retrofit2.http.* <methods>;
}
-keep class sun.misc.Unsafe { *; }
-keep class com.google.code.gson.stream.** { *; }
-keepattributes Signature
-keepattributes *Annotation*
这些规则的不同组合,但我仍然遇到构建问题,这些问题在Library / Module的 proguard-rules.pro
上编码我不知道问题是否来自proguard规则,因为我已经测试了很多-keep属性。任何帮助将不胜感激。
这是库的build.gradle
apply plugin: 'com.android.library'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner
"android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
lintOptions {
abortOnError false
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:25.3.0'
compile 'com.squareup.retrofit2:retrofit:2.2.0'
compile 'com.squareup.retrofit2:converter-gson:2.2.0'
compile 'com.google.code.gson:gson:2.8.0'
}
apply from: 'https://raw.githubusercontent.com/blundell/release-android-
library/master/android-release-aar.gradle'
答案 0 :(得分:1)
对我来说,在将以下内容添加到proguard文件后,您的项目已成功构建并启用了缩小功能:
-dontwarn okio.**
-dontwarn retrofit2.Platform$Java8