Could not resolve com.android.support:appcompat-v7:26.1.0 in Android Studio new project

后端 未结 14 1905
一生所求
一生所求 2020-11-30 07:22

I know about this questions:

Failed to resolve: com.android.support:cardview-v7:26.0.0 android

Could not resolve com.android.support:appcompat-v7:26.1.0 [dup

14条回答
  •  南方客
    南方客 (楼主)
    2020-11-30 08:17

    try this :

    android {
        compileSdkVersion 26
        buildToolsVersion "26.0.1"
    defaultConfig {
    
            targetSdkVersion 26
        }
    
    }
    
    
    compile 'com.android.support:appcompat-v7:25.1.0'
    

    It has worked for me

提交回复
热议问题