无法解决:com.android.support:appcompat-v7:28.0.3

时间:2019-08-01 19:46:32

标签: android android-studio build.gradle android-support-library androidx

为什么无法构建?

兼容Noinspection Gradle

  apply plugin: 'com.android.application'
    android {
     compileSdkVersion 27
     defaultConfig {
      applicationId "com.codingwithmitch.googlemaps2018"
      minSdkVersion 15
      targetSdkVersion 27
      versionCode 1
      versionName "1.0"
      testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
      multiDexEnabled true
     }
    buildTypes {
     release {
      minifyEnabled false
      proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
     }
    }
    buildToolsVersion = '27.0.3'
  }

  dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:28.0.3'
    implementation 'com.android.support.constraint:constraint-layout:2.0.0-beta2'
    testImplementation 'junit:junit:4.13-beta-3'
    androidTestImplementation 'com.android.support.test:runner:1.1.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'

    //Android Support Design Library
    implementation 'com.android.support:design:28.0.3'
    //RecyclerView
    implementation 'com.android.support:recyclerview-v7:28.0.3' 
    //Support multidex
    implementation 'com.android.support:multidex:1.0.3'
    //Firebase Core
    implementation 'com.google.firebase:firebase-core:17.0.1'
    //Firebase Authentication
    implementation 'com.google.firebase:firebase-auth:18.1.0'
    // Firestore Firestore
    implementation 'com.google.firebase:firebase-firestore:20.2.0'
    //glide
    implementation 'com.github.bumptech.glide:glide:4.9.0'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
    //Circle ImageView
    implementation 'de.hdodenhof:circleimageview:3.0.0'
  }
  apply plugin: 'com.google.gms.google-services'

3 个答案:

答案 0 :(得分:1)

支持库的最新版本为f,没有版本Y。参见Recent Support Library Revisions

您应该考虑为项目使用 AndroidX 库,因为某些依赖项取决于该库。参见AndroidX Overview

答案 1 :(得分:1)

发生这种情况是因为com.android.support:appcompat-v7:28.0.3 不存在

您可以在官方文档中查看revision history

您可以:

  • 使用支持库的最新28.0.0版本
  • 迁移到androidx

Also check this note

  

注意:随着Android 9.0(API级别28)的发布,Jetpack包含了一个新版本的支持库AndroidX。 AndroidX库包含现有的支持库,还包含最新的Jetpack组件。

     

您可以继续使用支持库。历史工件(那些版本为27和更低版本,并打包为android.support。*的工件)将在Google Maven上可用。但是,所有新的库开发都将在AndroidX库中进行。

     

我们建议在所有新项目中使用AndroidX库。您还应该考虑将现有项目也迁移到AndroidX。

答案 2 :(得分:1)

记录表明,必须在2月停止迁移商店中发布的所有应用程序。您可以在官方文档中查看修订历史记录。 -使用支持库的最新28.0.0版本 -迁移到androidx