当尝试从 git:// github.com/osmdroid/osmdroid 构建 OpenStreetMapView 时,我得到了这个错误:
failed to find target with hash string android-23: D:\Users\myusername\AppData\Local\Android
我该怎么补救?以前的类似问题建议检查 android 23是否安装,但在我的情况下,它是。
下面是一些相关信息:
主机是 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)
建造,分级
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 和 编译 SdkVersion 更改为22,这将导致错误消息更改为“ android-22”而不是“ android-23”。