好吧,我开始从一个有多年历史的项目迁移到AndroidX(此后从此一直未动),但我在资源和gradle构建方面遇到了问题。我完全被新的名称空间迷住了,我更改了一些名称空间,升级了AndroidStudio告诉我的所有内容,但仍然无法识别项目中的内容。我将把gradle都粘贴到这里,然后将错误放在下面。
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
mavenCentral()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
模块
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
buildToolsVersion "28.0.3"
defaultConfig {
applicationId "com.example.usuario.tm"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test:runner:1.1.0-alpha3"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
androidTestImplementation('androidx.test.espresso:espresso-core:3.1.0-alpha3', {
exclude group: 'com.android.support', module: 'support-annotations'
})
implementation 'androidx.appcompat:appcompat:1.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'com.google.android.material:material:1.0.0'
implementation 'com.google.gms:google-services:4.1.0'
implementation 'com.google.android.gms:play-services-auth:16.0.1'
testImplementation 'junit:junit:4.12'
}
}
apply plugin: 'com.android.application'
apply plugin: 'maven'
错误
Android resource linking failed
Output: C:\Users\Xrless\Desktop\Programing\TN\TM\app\src\main\res\layout\activity_principal.xml:34: error: attribute android:style not found.
error: failed linking file resources.
Command: C:\Users\Xrless\.gradle\caches\transforms-1\files-1.1\aapt2-3.2.1-4818971-windows.jar\cf456f090f0725907522fb6d2bec3322\aapt2-3.2.1-4818971-windows\aapt2.exe link -I\
C:\Users\Xrless\AppData\Local\Android\Sdk\platforms\android-28\android.jar\
--manifest\
C:\Users\Xrless\Desktop\Programing\TN\TM\app\build\intermediates\merged_manifests\debug\processDebugManifest\merged\AndroidManifest.xml\
-o\
C:\Users\Xrless\Desktop\Programing\TN\TM\app\build\intermediates\processed_res\debug\processDebugResources\out\resources-debug.ap_\
-R\
@C:\Users\Xrless\Desktop\Programing\TN\TM\app\build\intermediates\incremental\processDebugResources\resources-list-for-resources-debug.ap_.txt\
--auto-add-overlay\
--java\
C:\Users\Xrless\Desktop\Programing\TN\TM\app\build\generated\not_namespaced_r_class_sources\debug\processDebugResources\r\
--custom-package\
com.example.usuario.tm\
-0\
apk\
--output-text-symbols\
C:\Users\Xrless\Desktop\Programing\TN\TM\app\build\intermediates\symbols\debug\R.txt\
--no-version-vectors
Daemon: AAPT2 aapt2-3.2.1-4818971-windows Daemon #0
答案 0 :(得分:1)
您的activity_principal.xml中存在错误。尝试更改:
android:style
到
样式
还需要添加
如果要使用androidX库而不是支持库,请android.useAndroidX = true
到 gradle.properties 文件中。
答案 1 :(得分:1)
在迁移到androidX之后,我花了一整夜的时间试图解决此问题。以下是我为使其工作所做的一些事情:
在gradle.property中:
dex.force.jumbo=true
android.useAndroidX=true
android.enableJetifier=true
android.enableD8=true
android.enableR8.libraries = false
android.enableR8 = false
在build.gradle中:
defaultConfig {
...
compileSdkVersion 28
…
}
//Use JDK1.8 and make sure the same is well specified in your gradle file.
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
//Exclude Guava libraries
...
configurations {
...
implementation.exclude group: 'com.google.guava'
}
//Make sure your firebase and google libraries are all updated
...
implementation 'com.google.guava:guava:27.0.1-android'
...
完成所有这些操作之后,
rm -rf $HOME/.gradle/caches/
上使用此命令)认为在那之后应该找到所有。希望它可以节省您一些时间。
答案 2 :(得分:0)
答案 3 :(得分:0)
答案 4 :(得分:0)
在AndroidStudio 3.2+中,您可以使用Refactor |迁移到AndroidX以升级项目。 要了解更多信息,请访问here。
答案 5 :(得分:0)
android.useAndroidX = true
同步项目
它运行完美。
答案 6 :(得分:0)
尽管接受的答案是正确的。但是为了帮助其他人,在复杂的项目中,我们发现了许多此类错误,需要手动修复。我已经撰写了有关该主题的完整文章,尤其是手动修复。 Ultimate Guide to Migrate Android Project to AndroidX。