我无法运行我的项目,出现类似ERROR的错误:无法解决:androidx

时间:2019-03-31 11:03:17

标签: android androidx

我无法运行我的项目。我遇到类似“错误:无法解决:androidx”的错误。我是乞gg。我尝试运行我的第一个项目,但我不能。从我的研究中,我尝试添加androidx库,但我没有。我不知道我该怎么办。

建造爷爷

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.example.testapp"
        minSdkVersion 21
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'androidx.appcompat:appco' +
            ',mpat:1.0.0-beta01'
    implementation 'androidx.core:core-ktx:1.1.0-alpha05'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'junit:junit:4.12'
    implementation 'androidx.test:runner:1.1.2-alpha02'
    implementation 'androidx.test.espresso:espresso-core:3.2.0-alpha02'


}

1 个答案:

答案 0 :(得分:0)

使用Android Studio迁移现有项目 在Android Studio 3.2及更高版本中,您可以通过从菜单栏中选择重构>迁移到AndroidX ,快速迁移现有项目以使用AndroidX。

这是android.com的官方链接 https://developer.android.com/jetpack/androidx/migrate