Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> 解決Android Studio打開別人包時出現Failed to find: com.android.support:appcompat-v7:21.

解決Android Studio打開別人包時出現Failed to find: com.android.support:appcompat-v7:21.

編輯:關於Android編程

Error:Failed to find: com.android.support:appcompat-v7:21.+ Install Repository and sync project

首先在Gradle Scripts下是否含有build.gradle(Moduel.app),若沒有則將build.gradle(Project…)下的

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile files('libs/pushservice-4.5.3.48.jar')
    compile 'com.android.support:appcompat-v7:22.2.1'
}```
####屏蔽掉,然後rebuild,然後待出來build.gradle(Moduel.app)後,修改裡面的代碼
```java

android {
    compileSdkVersion 22
    //主要是修改這裡,這裡的修改時根據打開sdk管理器下的
    //build-tools來設定值的
    buildToolsVersion 22.0.1

    defaultConfig {
        applicationId com.example.zhonghang.mypushdemo
        minSdkVersion 15
        //這裡
        targetSdkVersion 22
        versionCode 1
        versionName 1.0
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}


dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile files('libs/pushservice-4.5.3.48.jar')
    compile 'com.android.support:appcompat-v7:22.2.1'
}

然後在file -> Project Structrue->選中要打開的工程->dependence->右邊加號->第一個,然後查找appcompat的包。

操作完之後,然後rebuild之後就可以正常打開了。

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved