【问题标题】:No static field MAP_COPYRIGHTS_FULL of type I in class Lcom/google/android/libraries/maps/R$string; or its superclassesLcom/google/android/libraries/maps/R$string 类中没有类型 I 的静态字段 MAP_COPYRIGHTS_FULL;或其超类
【发布时间】:2019-11-20 20:25:08
【问题描述】:

我在我的应用程序中使用谷歌地图,在我的手机 (android 8) 上它工作正常,但在我的旧平板电脑 (5.02) 上我收到了这个错误消息。 我想这与依赖关系有关,但我无法弄清楚是什么。这是我的毕业典礼:

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test:runner:1.2.0'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'

    //maps
    implementation name: 'maps-sdk-3.0.0-beta', ext: 'aar'

    //needed for maps
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
    implementation 'com.google.android.gms:play-services-basement:17.0.0'
    implementation 'com.google.android.gms:play-services-base:17.0.0'
    implementation 'com.google.android.gms:play-services-gcm:17.0.0'
    implementation 'com.google.android.gms:play-services-location:17.0.0'

    //tablayout
    implementation 'com.google.android.material:material:1.0.0'
    implementation 'androidx.multidex:multidex:2.0.1'

    //retrofit
    implementation 'com.squareup.retrofit2:retrofit:2.5.0'
    implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
}

有什么想法吗?

【问题讨论】:

    标签: android google-maps


    【解决方案1】:

    只需将这些添加到您的应用 strings.xml 中

    <string name="MAP_COPYRIGHTS_GOOGLE_ONLY">© %1$d Google</string>
    <string name="MAP_COPYRIGHTS_FULL">© %1$d Google – Pictures © %2$d %3$s, Map Data © %4$d %5$s</string>
    <string name="MAP_COPYRIGHTS_IMAGERY_ONLY">© %1$d Google – Pictures © %2$d %3$s</string>
    <string name="MAP_COPYRIGHTS_MAP_DATA_ONLY">© %1$d Google – Map Data © %2$d %3$s</string>

    在 google tracker 上有一个问题: google issue tracker

    【讨论】:

      【解决方案2】:

      我不知道如何或为什么,但是 maps-sdk-3.0.0-beta.aar 中缺少 strings.xml。 幸运的是,有人上传了翻译:https://github.com/greeshan/Android_4.2.x_multilang 我已经下载了另一种语言 strings.xml 并将其复制到 \AndroidStudioProjects\MyAppWithMap\app\libs\maps-sdk-3.0.0-beta.aar\res\values\ 文件夹,现在它可以工作了。

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 2015-10-02
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2020-09-30
        • 2019-08-28
        • 1970-01-01
        • 2018-12-22
        相关资源
        最近更新 更多