เมื่อพยายามสร้าง OpenStreetMapView จาก git: //github.com/osmdroid/osmdroid ฉันได้รับข้อผิดพลาดนี้:
failed to find target with hash string android-23: D:\Users\myusername\AppData\Local\Android
ฉันจะแก้ไขปัญหานี้ได้อย่างไร? คำถามก่อนหน้านี้คล้ายกับนี้แนะนำให้ตรวจสอบว่าไม่ได้ติดตั้ง android 23 แต่ในกรณีของฉันมันเป็น
ด้านล่างนี้เป็นข้อมูลที่เกี่ยวข้อง:
ANDROID_HOME คือ D:\Users\myusername\AppData\Local\Android\sdk
D:\Users\myusername\AppData\Local\Android\sdk\platforms\
มีไดเร็กทอรี \ android-23 \, (เช่นเดียวกับ android-19, android-21, android-22, android-MNC)
build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "org.osmdroid.example"
minSdkVersion 8
targetSdkVersion 23
versionCode 16
versionName "4.4-SNAPSHOT"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
packagingOptions {
exclude 'META-INF/LICENSE'
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/NOTICE'
}
lintOptions {
abortOnError false
}
}
dependencies {
compile 'android.support:compatibility-v4:23+'
compile project(':osmdroid-android')
//compile 'org.osmdroid:osmdroid-third-party:4.4-SNAPSHOT'
}
ฉันลองเปลี่ยน targetSdkVersion และ compileSdkVersion เป็น 22 สิ่งนี้ทำให้ข้อความแสดงข้อผิดพลาดเปลี่ยนเป็น "android-22" แทนที่จะเป็น "android-23"