Podczas próby zbudowania OpenStreetMapView z git: //github.com/osmdroid/osmdroid, pojawia się ten błąd:
failed to find target with hash string android-23: D:\Users\myusername\AppData\Local\Android
Jak mogę to naprawić? Poprzednie pytania podobne do tego sugerują sprawdzenie, czy Android 23 nie jest zainstalowany, ale w moim przypadku tak jest.
Poniżej znajduje się kilka istotnych informacji:
ANDROID_HOME to D:\Users\myusername\AppData\Local\Android\sdk
D:\Users\myusername\AppData\Local\Android\sdk\platforms\
zawiera katalog \ android-23 \, (a także 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'
}
Próbowałem zmienić targetSdkVersion i compileSdkVersion na 22. To powoduje, że komunikat o błędzie zmienia się na „android-22” zamiast „android-23”.