【问题标题】:Couldn't compile android studio project无法编译 android studio 项目
【发布时间】:2016-02-19 14:13:09
【问题描述】:

我想在我的项目中添加一个 materialdrawer 库。当我添加依赖项时,我的 build.gradle 看起来像这样

 dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:22.1.1'
    compile('com.mikepenz:materialdrawer:4.4.8@aar') {
        transitive = true
    }
  }

然后我得到以下错误,

>Error:A problem occurred configuring project ':app'.  
> Could not resolve all dependencies for configuration ':app:_debugCompile'.
   > Could not find com.android.support:appcompat-v7:23.1.1.
     Searched in the following locations:
         https://jcenter.bintray.com/com/android/support/appcompat-v7/23.1.1/appcompat-v7-23.1.1.pom
         https://jcenter.bintray.com/com/android/support/appcompat-v7/23.1.1/appcompat-v7-23.1.1.jar
         file:/C:/Users/abeys/AppData/Local/Android/sdk/extras/android/m2repository/com/android/support/appcompat-v7/23.1.1/appcompat-v7-23.1.1.pom
         file:/C:/Users/abeys/AppData/Local/Android/sdk/extras/android/m2repository/com/android/support/appcompat-v7/23.1.1/appcompat-v7-23.1.1.jar
         file:/C:/Users/abeys/AppData/Local/Android/sdk/extras/google/m2repository/com/android/support/appcompat-v7/23.1.1/appcompat-v7-23.1.1.pom
         file:/C:/Users/abeys/AppData/Local/Android/sdk/extras/google/m2repository/com/android/support/appcompat-v7/23.1.1/appcompat-v7-23.1.1.jar
     Required by:
         MyApplication4:app:unspecified
         MyApplication4:app:unspecified > com.mikepenz:materialdrawer:4.4.8
         MyApplication4:app:unspecified > com.mikepenz:materialdrawer:4.4.8 > com.mikepenz:materialize:0.2.8
         MyApplication4:app:unspecified > com.mikepenz:materialdrawer:4.4.8 > com.mikepenz:iconics-core:2.2.0
   > Could not find com.android.support:recyclerview-v7:23.1.1.
     Searched in the following locations:
         https://jcenter.bintray.com/com/android/support/recyclerview-v7/23.1.1/recyclerview-v7-23.1.1.pom
         https://jcenter.bintray.com/com/android/support/recyclerview-v7/23.1.1/recyclerview-v7-23.1.1.jar
         file:/C:/Users/abeys/AppData/Local/Android/sdk/extras/android/m2repository/com/android/support/recyclerview-v7/23.1.1/recyclerview-v7-23.1.1.pom
         file:/C:/Users/abeys/AppData/Local/Android/sdk/extras/android/m2repository/com/android/support/recyclerview-v7/23.1.1/recyclerview-v7-23.1.1.jar
         file:/C:/Users/abeys/AppData/Local/Android/sdk/extras/google/m2repository/com/android/support/recyclerview-v7/23.1.1/recyclerview-v7-23.1.1.pom
         file:/C:/Users/abeys/AppData/Local/Android/sdk/extras/google/m2repository/com/android/support/recyclerview-v7/23.1.1/recyclerview-v7-23.1.1.jar
     Required by:
         MyApplication4:app:unspecified > com.mikepenz:materialdrawer:4.4.8
   > Could not find com.android.support:support-annotations:23.1.1.
     Searched in the following locations:
         https://jcenter.bintray.com/com/android/support/support-annotations/23.1.1/support-annotations-23.1.1.pom
         https://jcenter.bintray.com/com/android/support/support-annotations/23.1.1/support-annotations-23.1.1.jar
         file:/C:/Users/abeys/AppData/Local/Android/sdk/extras/android/m2repository/com/android/support/support-annotations/23.1.1/support-annotations-23.1.1.pom
         file:/C:/Users/abeys/AppData/Local/Android/sdk/extras/android/m2repository/com/android/support/support-annotations/23.1.1/support-annotations-23.1.1.jar
         file:/C:/Users/abeys/AppData/Local/Android/sdk/extras/google/m2repository/com/android/support/support-annotations/23.1.1/support-annotations-23.1.1.pom
         file:/C:/Users/abeys/AppData/Local/Android/sdk/extras/google/m2repository/com/android/support/support-annotations/23.1.1/support-annotations-23.1.1.jar
     Required by:
         MyApplication4:app:unspecified > com.mikepenz:materialdrawer:4.4.8

如何解决这个问题?

【问题讨论】:

  • 它不是没有编译它的抽屉,它是 appcompat 如果你不需要它,请尝试删除 compile 'com.android.support:appcompat-v7:22.1.1'

标签: android android-studio


【解决方案1】:

确保同时更新 “Android 支持库”“Android 支持库”

并确保按照@diptia 的建议在 Android Studio 中完成 Gradle Sync

【讨论】:

  • 在安装必要的包之后,做一个 gradle Sync 非常重要,然后才构建项目。否则,您将继续看到相同的错误。
  • 我认为Android Support repository 已重命名为Local Maven repository for Support libraries
【解决方案2】:

com.mikepenz:materialdrawer:4.4.8@aar

第三方库似乎需要 appcompat v23.1.1。

解决它:

1) 确保已安装 com.android.support:appcompat-v7:23.1.1。通过您的 SDK 管理器进行检查。

2) 在 build.gradle 文件中添加 compile 'com.android.support:appcompat-v7:23.1.1'

3) 从依赖项中删除 compile 'com.android.support:appcompat-v7:22.1.1'

【讨论】:

    猜你喜欢
    • 2016-08-26
    • 1970-01-01
    • 2022-01-15
    • 1970-01-01
    • 2020-12-05
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多