1

'com.android.support:appcompat-v7:+'在 AIDE 上编译时遇到问题

apply plugin: 'com.android.application'

android {
compileSdkVersion 21
buildToolsVersion "21.1.0"

defaultConfig {
application "com.mycompany.myapp"
minSdkVersion 14
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
compile 'com.android.support:support-v4:+'
compile 'com.android.support:appcompat-v7:+'
}

错误

Dependency com.android.support:appcompat-v7:+ not found.

我在 Stack Overflow 上搜索了与 AIDE 有相同问题的其他人,但无济于事。

4

1 回答 1

1

终于弄清楚了,我没有在我的存储库中包含 mavenCentral() 。

allprojects {
repositories {
    jcenter()
            mavenCentral()
}

}

于 2017-05-07T13:17:54.803 回答