私のプロジェクトでサードパーティ製のライブラリを使用しています。プロガードが私にそのライブラリに関連付けることができないこれらの警告を発行しているので、私が使用しているライブラリはLollipinです。私は、私が試してみました何これらのプロガードの警告を修正するには
Warning:android.databinding.DataBindingUtil: can't find referenced class android.databinding.DataBinderMapper
Warning:android.databinding.ViewDataBinding: can't find referenced class android.databinding.DataBinderMapper
Warning:there were 43 unresolved references to classes or interfaces.
Warning:Exception while processing task java.io.IOException: Please correct the above warnings first.
を取得しています
警告?
私はこのようなproguard-rules.pro
を編集していない:
-keeppackagenames com.github.orangegangsters.lollipin
をまだ何も行きます!私はまた、うまくいかなかったプロジェクトをきれいにして再構築しようとしました。ここで
はbuild.gradleです:
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion '24.0.2'
defaultConfig {
applicationId "com.example.teach"
minSdkVersion 15
targetSdkVersion 24
versionCode 27
versionName "5.0"
}
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:24.2.1'
compile('com.mikepenz:materialdrawer:[email protected]') {
transitive = true
}
compile ('com.github.orangegangsters:lollipin:[email protected]') {
transitive = true
}
compile 'com.google.android.gms:play-services-ads:9.6.0'
}
apply plugin: 'com.google.gms.google-services'
私を助けてください!ありがとう!
それは働いていなかったんに変更下に追加しました。それでも同じ警告。 –