API 28 和 "androidx.appcompat" 库项目显示 "AppCompatActivity" 符号未找到

With API 28 and "androidx.appcompat" library project says "AppCompatActivity" symbol not found

我将构建版本和目标版本更新为 28 (Pie) 并替换了相关依赖项。现在我的项目显示 AppCompatActivity 上找不到符号。我试过

但是结果是一样的。此外,当我在 activity class 中扩展关键字后尝试 Ctrl+Space 时,没有 "AppCompatActivity 建议。我试图调查它是否存在于 libraries 文件夹中,它存在于那里。

现在,我应该怎么做才能让它发挥作用?如果有 variation/alternative 和 androidx 库,请告诉我。这是我完整的 build.gradle 文件

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

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.invogen.messagingapp"
        minSdkVersion 16
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
//    implementation 'com.android.support:appcompat-v7:28.0.0'
//    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
//    implementation 'com.android.support:design:28.0.0'
//    implementation 'com.android.support:support-v4:28.0.0'

    // Libs for newer API 28
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'com.google.android.material:material:1.1.0-alpha01'
    implementation 'androidx.cardview:cardview:1.0.0'


    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'

    // Libs for Firebase Functionality
    implementation 'com.google.firebase:firebase-core:16.0.5'
//    implementation 'com.google.firebase:firebase-database:16.0.4'
    implementation 'com.google.firebase:firebase-messaging:17.3.4'
    implementation 'com.google.firebase:firebase-auth:16.0.5'
    implementation 'com.google.firebase:firebase-storage:16.0.4'

    // Lib for Firebase UI Elements
    implementation 'com.firebaseui:firebase-ui-database:4.2.1'

    // Libs for QR Code
    implementation 'com.google.zxing:core:3.2.1'
    implementation 'com.journeyapps:zxing-android-embedded:3.2.0@aar'

    // Lib for Circle Image View (Profile Image)
    implementation 'de.hdodenhof:circleimageview:2.2.0'

    // Lib for Loading Images
    implementation 'com.squareup.picasso:picasso:2.71828'

    //Lib for Cropping Images
    api 'com.theartofdev.edmodo:android-image-cropper:2.8.+'


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

一些其他帖子建议在 Manifest 文件中添加以下两个参数

android:appComponentFactory="anystrings be placeholder"
tools:replace="android:appComponentFactory"

但是这两行项目同步时出现多个错误,Android Studio 说

Compilation failed; see the compiler error output for details.

如果我必须向问题添加更多详细信息,请告诉我。

编辑: 现在您可以轻松地将项目迁移到 androidx,只需单击菜单栏中的 Refactor => Migrate to Androidx

之前我是这样操作的
使用 Clean and buildRebuild project android studio 没有清除未使用的导入,例如来自 android.support.v7 的导入,所以我从所有活动中手动删除了它们。现在 android studio 建议 AppCompatActivity 来自正确的库 androidx.appcompat

希望对某人有所帮助。

你应该替换目标 class。

例如

import android.support.v7.app.AppCompatActivity;

替换为:

import androidx.appcompat.app.AppCompatActivity;

在您的 gradle 属性中添加以下行:

android.useAndroidX=真 android.enableJetifier=真

这会将您的项目升级到 Android X。