Git: //github.com/osmdroid/osmdroid adresinden OpenStreetMapView oluşturmaya çalışırken şu hatayı alıyorum:
failed to find target with hash string android-23: D:\Users\myusername\AppData\Local\Android
Bunu nasıl düzeltebilirim? Buna benzer önceki sorular, android 23'ün kurulu olmadığını kontrol etmeyi önerir, ancak benim durumumda öyle.
Aşağıda bazı ilgili bilgiler verilmiştir:
ANDROID_HOME D:\Users\myusername\AppData\Local\Android\sdk
D:\Users\myusername\AppData\Local\Android\sdk\platforms\
\ android-23 \ dizinini içerir (ayrıca 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 ve compileSdkVersion'ı 22 olarak değiştirmeyi denedim. Bu, hata mesajının "android-23" yerine "android-22" olarak değişmesine neden oluyor.