在清洁生成版本上找不到符号
Cannot find symbol on clean generate release
我正在创建一个外部模块,或者我应该说是一个现有移动项目应用程序的库,因为我无法调整其内部结构(代码、配置等),
这个库的唯一目的就是执行 API 调用(即在服务器和客户端项目(app)之间接受和 return 数据),它在开发中工作得很好,但是当我尝试以这种方式构建库时
gradlew clean build generateRelease --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[ 上进行了编码=15=]
我不知道问题是否来自混淆器规则,因为我已经测试了很多 -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'
对我来说,在将以下内容添加到混淆器文件后,您的项目已成功构建并启用了缩小:
-dontwarn okio.**
-dontwarn retrofit2.Platform$Java8
我正在创建一个外部模块,或者我应该说是一个现有移动项目应用程序的库,因为我无法调整其内部结构(代码、配置等),
这个库的唯一目的就是执行 API 调用(即在服务器和客户端项目(app)之间接受和 return 数据),它在开发中工作得很好,但是当我尝试以这种方式构建库时
gradlew clean build generateRelease --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[ 上进行了编码=15=]
我不知道问题是否来自混淆器规则,因为我已经测试了很多 -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'
对我来说,在将以下内容添加到混淆器文件后,您的项目已成功构建并启用了缩小:
-dontwarn okio.**
-dontwarn retrofit2.Platform$Java8