我正在创建一个空白项目,我compile 'com.mapbox.mapboxsdk:mapbox-android-navigation:0.6.3'
在 gradle 文件中添加了 mapbox 导航包。它在 appcompat 文件中显示错误,如下所示:-
Error:Failed to resolve: com.android.support:appcompat-v7:26.1.0
即使我使用不同版本的 Appcompat 文件。在添加导航包之前,一切都很好。有人可以帮我找出这个奇怪的错误。
这是我的应用程序的 gradle 文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "26.0.2"
defaultConfig {
applicationId "com.example.aadhilahmed.test7"
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 {
compile fileTree(dir: 'libs', include: ['*.jar'])
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.3.1'
compile 'com.mapbox.mapboxsdk:mapbox-android-navigation:0.6.3'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
}