0
を、私はこのエラーを持っている:エラー:(30、13)が解決に失敗しました:LIBS/com.android.support:APPCOMPAT-V7:22.2.1
Error:(30, 13) Failed to resolve: libs/com.android.support:appcompat-v7:22.2.1
ここに私のbuild.gradle
ファイル:
apply plugin: `com.android.application`
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.example.guestadmin.myapplication"
minSdkVersion 15
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:25.2.0'
testCompile 'junit:junit:4.12'
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'libs/com.android.support:appcompat-v7:22.2.1'
}
誰でもこの30-13エラーplzが表示されている理由を教えてください –
appcompat.v7:22.2.1ライブラリが正しく参照されているかどうかを確認しましたか?多分あなたのバージョンが変わったか、それとも見つけられないのでしょうか?あなたがまだそれを必要とするなら、私は参照をもう一度削除し、それを元に戻します。 – Lepidopteron