web-dev-qa-db-ja.com

Android Studioの未解決の参照。プロジェクトのコンパイル

Android Studio、問題のないプロジェクトがエディターに問題を表示し始めました。私はたくさんのUnresolved Referenceエラー。サポートライブラリ(support-v4、support-v7)の下にあるもの。

enter image description here

上記の画面キャプチャでは、赤で表示されるものはすべて解決されず、エラーとして表示されません。 LifecycleコンポーネントとRoomデータベースも使用しています。彼らにも問題があるようです。インターフェイスは見つかったように見えますが、クラスは見つかりません。

たとえば、Roomを使用する私のクラスの1つでは、

Android.Arch.persistence.room.DatabaseおよびAndroid.Arch.persistence.room.TypeConverters正しく解決するが、

Android.Arch.persistence.room.RoomおよびAndroid.Arch.persistence.room.RoomDatabase しない。

enter image description here

注:プロジェクトは、Androidエミュレーターおよびデバイスで問題なくビルドおよび実行されます。ビルドボタンを使用して、Android Studioでエラーなしでビルドおよび実行されます。 Class not foundエラーは発生しません。これはAndroid Studioエディター内の問題です。すでに再起動しましたAndroid Studio、クリーニングおよび再構築プロジェクト。

これが私のプロジェクトビルドファイルです。

buildscript {
  ext.kotlin_version = '1.2.70'
  ext.serialization_version = '0.6.2'
  ext.gradle_plugin_version = '3.2.0'

  repositories {
    google()
    jcenter()
    maven { url "https://jitpack.io" }
    maven { url "https://kotlin.bintray.com/kotlinx" }
  }
  dependencies {
    classpath "com.Android.tools.build:gradle:3.2.1"
    classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    classpath "org.jetbrains.kotlinx:kotlinx-gradle-serialization-plugin:$serialization_version"
  }
}

allprojects {
  repositories {
    google()
    jcenter()
    maven { url 'https://jitpack.io' }
    maven { url "https://kotlin.bintray.com/kotlinx" }
  }
}

task clean(type: Delete) {
  delete rootProject.buildDir
}

ext {
  roomVersion = '1.1.1'
  archLifecycleVersion = '1.1.1'
  buildToolsVersion = '28.0.3'
  supportLibVersion = '28.0.0'
}

そしてモジュールビルドファイル:

apply plugin: 'com.Android.application'
apply plugin: 'kotlin-Android'
apply plugin: 'kotlin-Android-extensions'
apply plugin: 'kotlin-kapt'
apply plugin: 'kotlinx-serialization'

Android {
  compileSdkVersion 28

  defaultConfig {
    applicationId "com.example.project"
    minSdkVersion 19
    targetSdkVersion 28
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "Android.support.test.runner.AndroidJUnitRunner"
    vectorDrawables.useSupportLibrary = true
    multiDexEnabled true
    kapt {
        arguments {
            arg("room.schemaLocation", "$projectDir/schemas".toString())
        }
    }
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-Android.txt'), 'proguard-rules.pro'
    }
}
flavorDimensions 'version'
productFlavors {
    live {
        dimension 'version'
    }
    dev {
        dimension 'version'
        versionNameSuffix '-dev'
    }
}
buildToolsVersion "$rootProject.buildToolsVersion"
compileOptions {
    sourceCompatibility JavaVersion.VERSION_1_8
    targetCompatibility JavaVersion.VERSION_1_8
}
dataBinding {
    enabled = true
  }
}

kotlin {
  experimental {
    coroutines 'enable'
  }
}



dependencies {
implementation "com.Android.support:multidex:1.0.3"
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-serialization-runtime:$serialization_version"

// Support and google services
implementation "com.Android.support:support-compat:$rootProject.supportLibVersion"
implementation "com.Android.support:support-core-utils:$rootProject.supportLibVersion"
implementation "com.Android.support:support-core-ui:$rootProject.supportLibVersion"
implementation "com.Android.support:support-media-compat:$rootProject.supportLibVersion"
implementation "com.Android.support:support-fragment:$rootProject.supportLibVersion"
implementation "com.Android.support:design:$rootProject.supportLibVersion"
implementation "com.Android.support:appcompat-v7:$rootProject.supportLibVersion"
implementation "com.Android.support:gridlayout-v7:$rootProject.supportLibVersion"
implementation "com.Android.support:preference-v7:$rootProject.supportLibVersion"
implementation "com.Android.support.constraint:constraint-layout:1.1.3"
implementation "com.Android.support:support-annotations:$rootProject.supportLibVersion"
implementation "com.Android.support:support-vector-drawable:$rootProject.supportLibVersion"
implementation "com.Android.support:recyclerview-v7:$rootProject.supportLibVersion"
implementation "com.google.Android.gms:play-services-plus:15.0.1"

// Rx
implementation "io.reactivex.rxjava2:rxandroid:2.1.0"
implementation "io.reactivex.rxjava2:rxjava:2.2.2"

// Retrofit
implementation "com.google.code.gson:gson:2.8.5"
implementation "com.squareup.retrofit2:retrofit:2.4.0"
implementation "com.squareup.retrofit2:converter-gson:2.4.0"
implementation "com.squareup.retrofit2:adapter-rxjava2:2.4.0"
implementation "com.squareup.okhttp3:logging-interceptor:3.11.0"

// Testing
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"

///---
// Java 8
implementation "Android.Arch.lifecycle:common-Java8:$archLifecycleVersion"

// Room components
implementation "Android.Arch.persistence.room:runtime:$rootProject.roomVersion"
annotationProcessor "Android.Arch.persistence.room:compiler:$rootProject.roomVersion"
androidTestImplementation "Android.Arch.persistence.room:testing:$rootProject.roomVersion"
kapt "Android.Arch.persistence.room:compiler:$rootProject.roomVersion"

// Lifecycle components
implementation "Android.Arch.lifecycle:extensions:$rootProject.archLifecycleVersion"
kapt "Android.Arch.lifecycle:compiler:$rootProject.archLifecycleVersion"
annotationProcessor "Android.Arch.lifecycle:compiler:$rootProject.archLifecycleVersion"

}
10
Inn0vative1

同じ問題がありました。新しいAndroidXライブラリとその移行に関連しています。

[ファイル]-> [開く]-> [build.gradle]をクリックして、プロジェクトを再度開きます。

Stanislav Mukhametshinに同意します。これは、新しいAndroidXライブラリとその移行に関連している可能性があります。プロジェクトをクリーンアップして再構築しましたが、うまくいきませんでした。だから、私はこの方法を試してみましたが、エラーは消えます。

1)Fileおよびプロジェクトを閉じるに移動します。

2)再オープン同じプロジェクト。

1
Nitin Patel