我建立了一个 aar 文件。它使用了一些依赖。我的库的 build.gradle 文件:
apply plugin: 'com.android.library'
android {
compileSdkVersion 27
defaultConfig {
minSdkVersion 19
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:support-vector-drawable:27.1.1'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}
我的 aar 文件路径 ->app/libs/mylibrary.aar
我编辑顶级 build.gradle 文件
allprojects {
repositories {
...
flatDir {
dirs 'libs'
}
}
}
将库添加为依赖项
implementation(name:"mylibrary", ext:"aar") {
transitive = true
}
我的应用程序 ID:my.sample.app
./gradlew app:assembleRelease
任务 :app:processReleaseManifest /SampleApp/app/src/main/AndroidManifest.xml:6:5-21:19 警告:application@android:label 被标记在 AndroidManifest.xml:6 以替换其他声明,但没有其他声明存在/ SampleApp/app/src/main/AndroidManifest.xml:6:5-21:19 警告:application@android:icon 被标记在 AndroidManifest.xml:6 以替换其他声明,但没有其他声明存在 /user/.gradle/caches /transforms-2/files-2.1/eb66b88fff0dbb2e75f036f5373b5bbf/res/layout/activity_btb.xml:10:AAPT:错误:找不到属性“my.sample.app:layout_constraintLeft_toLeftOf”。
我添加了库使用的依赖项,错误消失了。
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation(name:"mylibrary", ext:"aar") {
transitive = true
}
但这不是最好的方法。我该如何解决这个错误?为什么我的图书馆找不到它的依赖项。