Не удается разрешить символ «AppCompatActivity»

После изменения applicationId Android Studio не может разрешить AppCompatActivity, DialogFragment, поддержку V4 Fragment и аналогичные элементы из библиотеки поддержки.

ошибка изображения

Я пытался:

  • Чистый проект
  • Перестроить проект
  • Синхронизировать проект с файлами gradle
  • Отключить синхронизацию проекта Gradle и снова синхронизировать
  • Недействительный кеш и перезапустить
  • Удалить проект и снова клонировать
  • Удалить все зависимости и добавить одну за другой
  • Переименовать applicationId в предыдущее имя

Это мое приложение build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.squivisur.app"
        minSdkVersion 21
        targetSdkVersion 27
        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(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:support-v4:27.1.1'
    implementation 'com.android.support:appcompat-v7:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.0'
    implementation 'com.android.support:design:27.1.1'
    implementation 'com.google.code.gson:gson:2.8.0'
    implementation 'com.weiwangcn.betterspinner:library-material:1.1.0'
    implementation 'com.squareup.okhttp3:okhttp:3.10.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'
    implementation project(path: ':ocr')
    implementation project(path: ':ucrop')
}

Есть ли способ решить мою проблему?


person Dani Garcia    schedule 21.05.2018    source источник


Ответы (1)


По моему опыту, это, скорее всего, связано с реализацией библиотеки.. (я думаю, какой-то конфликт), может быть, что-то вроде:

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.appcompat:appcompat:1.0.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.2'
implementation 'com.google.android.material:material:1.1.0-alpha05'
implementation 'com.google.code.gson:gson:2.8.0'
implementation 'com.weiwangcn.betterspinner:library-material:1.1.0'
implementation 'com.squareup.okhttp3:okhttp:3.10.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'
implementation project(path: ':ocr')
implementation project(path: ':ucrop') }

цифры наверное можно обновить..

person Joe    schedule 08.04.2019