当前位置: 首页 > 知识库问答 >
问题:

迁移到AndroidX后项目构建失败

明越
2023-03-14

我的项目在我迁移到AndroidX后无法构建,错误日志显示< code > error:package Android . support . annotation不存在在一些类中,但是这些类不能被编辑,当我编辑这些类并重新构建时,这些将被恢复。当打开这些类时会显示< code >文件是在" build "文件夹下生成的,不应该被编辑。并且当编辑这些类时会显示< code >生成的源文件不应该被编辑。重新生成源时,更改将会丢失。

我尝试清理我的项目,然后同步和重建,但没有成功,我如何修复它,谢谢。

这是我的错误日志

C:/Users/Myname/AndroidStudioProjects/PGapp 
app/build/generated/source/apt/debug/com/gmpsykr/goma/GlideOptions.java 
error: package android.support.annotation does not exist    
error: package android.support.annotation does not exist    
error: cannot find symbol class CheckResult 
error: cannot find symbol class CheckResult 
error: cannot find symbol class CheckResult 
error: cannot find symbol class CheckResult 
error: cannot find symbol class CheckResult 
error: cannot find symbol class CheckResult 
error: cannot find symbol class CheckResult 
error: cannot find symbol class CheckResult 
error: cannot find symbol class CheckResult 
error: cannot find symbol class CheckResult 
error: cannot find symbol class CheckResult 
error: cannot find symbol class CheckResult 
error: cannot find symbol class CheckResult 
error: cannot find symbol class CheckResult 
error: cannot find symbol class CheckResult 
error: cannot find symbol class CheckResult 
error: cannot find symbol class CheckResult 
error: cannot find symbol class CheckResult 
error: cannot find symbol class CheckResult 
error: cannot find symbol class CheckResult 
error: cannot find symbol class CheckResult 
error: cannot find symbol class CheckResult 
error: cannot find symbol class CheckResult 
error: cannot find symbol class CheckResult 
error: cannot find symbol class CheckResult 
error: cannot find symbol class CheckResult 
app/build/generated/source/apt/debug/com/gmpsykr/goma/GlideRequest.java 
app/build/generated/source/apt/debug/com/gmpsykr/goma/GlideRequests.java    
app/build/generated/source/apt/debug/com/bumptech/glide/GeneratedRequestManagerFactory.java 
app/build/generated/source/apt/debug/com/bumptech/glide/GeneratedAppGlideModuleImpl.java    

以下是我的build.gradle:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId 'MyId'
        minSdkVersion 24
        targetSdkVersion 28
        versionCode 5
        versionName "1.3"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        vectorDrawables.useSupportLibrary = true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    productFlavors {
    }
}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'androidx.appcompat:appcompat:1.0.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.1.0'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
    implementation 'com.google.android.material:material:1.0.0'
    implementation 'androidx.cardview:cardview:1.0.0'
    implementation 'androidx.recyclerview:recyclerview:1.0.0'
    implementation 'androidx.browser:browser:1.0.0'
    implementation 'com.android.billingclient:billing:2.0.2'
    implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
    implementation 'com.github.bumptech.glide:glide:4.9.0'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
    implementation 'com.google.android.gms:play-services-auth:17.0.0'
    implementation 'com.google.firebase:firebase-core:17.0.1'
    implementation 'com.google.firebase:firebase-auth:18.1.0'
    implementation 'com.google.firebase:firebase-storage:18.1.1'
    implementation 'com.google.firebase:firebase-database:18.0.1'
    implementation 'com.google.firebase:firebase-messaging:19.0.1'
    implementation 'com.google.firebase:firebase-ads:18.1.1'
    implementation 'com.firebaseui:firebase-ui-storage:5.0.0'
    implementation 'com.facebook.android:audience-network-sdk:5.4.1'
    implementation 'com.facebook.android:facebook-android-sdk:5.4.0'
    implementation 'com.github.chrisbanes:PhotoView:2.1.4'
    implementation 'de.hdodenhof:circleimageview:3.0.0'
    implementation files('libs/jsch-0.1.55.jar')
}

apply plugin: 'com.google.gms.google-services'

以下是我的毕业生属性:

org.gradle.jvmargs=-Xmx1536m
android.useAndroidX=true
android.enableJetifier=true

共有2个答案

曹原
2023-03-14

将此添加到应用程序gradle文件

注释处理器 “androidx.annotation:annotation:1.0.0”

沈子实
2023-03-14

我认为它与滑翔图书馆有问题。

你能把这部分删掉吗annotationProcessor“com.github.bumptech.glide:编译器:4.9.0”

之后,您应该单击“重构 -

 类似资料:
  • 我正试图迁移到AndroidX,我们在我们的项目中使用这个库。然而,这目前在我们的项目中引起了一个问题: 无法解析对“module @ build type/compile class path”的依赖项:无法使用转换JetifyTransform转换文件“localytics-1.3.0.aar”以匹配属性{artifactType=processed-aar} 删除库会使此问题消失。在这个库被

  • 我正在使用Android Studio 3.2 Canary 14,并试图迁移现有项目以使用AndroidX。从https://developer.android.com/topic/libraries/support-library/androidx-rn听起来,我必须设置(这是在选择“重构到AndroidX…”选项时自动完成的)。我还将目标API级别更新为28。还有人看到这个问题吗? 未能转换

  • 本文向大家介绍Android项目迁移到AndroidX的方法步骤,包括了Android项目迁移到AndroidX的方法步骤的使用技巧和注意事项,需要的朋友参考一下 1. 写在前面 迁移前请确认所有代码都已提交至代码托管平台或已手动备份! 迁移前请确认所有代码都已提交至代码托管平台或已手动备份! 迁移前请确认所有代码都已提交至代码托管平台或已手动备份! 重要的事情说三遍! 2. 前提条件 将AS更新

  • 当我将我的项目库升级到AndroidX时。迁移到AndroidX已完成。 现在在build.gradle中的这一行: 我收到此生成错误 哪里出错:任务执行失败':app:javaPreCompileDebug '。 无法解析配置的所有文件:app: degCompileClasspath。无法使用JetifyTransform转换文件“selenium-server-standalone-3.13

  • 我不想迁移到androidx。我能做什么??? 错误:清单合并失败:属性application@appComponentFactory值=(android.support.v4.app.CoreComponentFactory)来自[com.android.support:support compat:28.0.0]AndroidManifest。xml:22:18-91也出现在[androidx

  • 我刚刚通过Android Studio菜单选项Refactor->Refactor to androidx迁移到androidx 我得到以下错误: Android.View.InflateException:二进制XML文件行#2:二进制XML文件行#2:膨胀类AndroidX.ConstraintLayout.ConstraintLayout时出错 知道吗? 堆栈跟踪: