android 无法使用osmdroid 6.1.13编译Kotlin项目

zyfwsgd6  于 2023-04-04  发布在  Android
关注(0)|答案(2)|浏览(173)

在Androidstudio中按照Wiki(https://github.com/osmdroid/osmdroid/wiki/How-to-use-the-osmdroid-library-(Kotlin))上的教程创建Kotlin项目后,我无法编译该项目。我得到的错误消息:
失败:生成已完成,但有9个失败。% 1:任务失败,出现异常。

What went wrong:
Execution failed for task ':app:dataBindingMergeDependencyArtifactsDebug'.

Could not resolve all files for configuration ':app:debugCompileClasspath'.
Could not find org.osmdroid:osmdroid-android' ):6.1.13.
Required by:
project :app > org.osmdroid:osmdroid-wms:6.1.13
project :app > org.osmdroid:osmdroid-mapsforge:6.1.13

环境

Linux,Android Studio 2021.2.1 Patch 2,Gradle插件7.2.2,Gradle版本7.5.1
项目的源代码可以在这里找到:https://gitlab.com/brmmm3/btmap
build.gradle inapp

plugins {
    id 'com.android.application'
    id 'org.jetbrains.kotlin.android'
}

android {
    compileSdk 29

    defaultConfig {
        applicationId "com.greatreset.btmap"
        minSdk 29
        targetSdk 32
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    kotlinOptions {
        jvmTarget = '1.8'
    }
    buildFeatures {
        viewBinding true
    }
    buildToolsVersion '30.0.3'
}

dependencies {
    implementation 'androidx.core:core-ktx:1.8.0'
    implementation 'androidx.appcompat:appcompat:1.5.0'
    implementation 'com.google.android.material:material:1.6.1'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
    implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.5.1'
    implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
    implementation 'androidx.navigation:navigation-fragment-ktx:2.5.1'
    implementation 'androidx.navigation:navigation-ui-ktx:2.5.1'

    implementation 'org.osmdroid:osmdroid-android:6.1.13'
    implementation 'org.osmdroid:osmdroid-wms:6.1.13'
    implementation 'org.osmdroid:osmdroid-mapsforge:6.1.13'
    implementation 'org.osmdroid:osmdroid-geopackage:6.1.13'

    testImplementation 'junit:junit:4.13.2'
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}

gradle build输出显示:

...
> Task :app:dataBindingMergeDependencyArtifactsDebug FAILED
Watching 24 directories to track changes
Resource missing. [HTTP GET: https://dl.google.com/dl/android/maven2/org/osmdroid/osmdroid-android'%20)/6.1.13/osmdroid-android'%20)-6.1.13.pom]
Resource missing. [HTTP GET: https://repo.maven.apache.org/maven2/org/osmdroid/osmdroid-android'%20)/6.1.13/osmdroid-android'%20)-6.1.13.pom]
:app:dataBindingMergeDependencyArtifactsDebug (Thread[Execution worker Thread 5,5,main]) completed. Took 0.219 secs.
Resolve mutations for :app:dataBindingMergeGenClassesDebug (Thread[included builds,5,main]) started.
Resolve mutations for :app:dataBindingMergeGenClassesDebug (Thread[included builds,5,main]) completed. Took 0.0 secs.
:app:dataBindingMergeGenClassesDebug (Thread[Execution worker Thread 2,5,main]) started.
...

可以看到的是,gradle正在将%20)添加到下载路径中。gradle是从哪里得到这个的?

xlpyo6sf

xlpyo6sf1#

发现wms和mapsforge的pom文件在6.1.13和6.1.12版本中有bug。讨论可以在这里找到:https://github.com/osmdroid/osmdroid/issues/1831同时使用6.1.11解决了这个问题。

nmpmafwu

nmpmafwu2#

问题在pom文件中:https://github.com/osmdroid/osmdroid/issues/1831#issuecomment-1221915903
已在版本6.1.14中修复:https://github.com/osmdroid/osmdroid/milestone/25

相关问题