当前位置: 首页 > 知识库问答 >
问题:

类Lcom/google/android/库/地图/R$string中没有类型I的静态字段MAP_COPYRIGHTS_FULL;或其超类

万俟小林
2023-03-14

我的手机在使用谷歌地图(google maps)时出现了错误,我的手机在使用谷歌地图(google maps)时出现了错误。我想这与依赖性有关,但我不知道是什么。这是我的毕业证书:

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'
}

有什么想法吗?

共有2个答案

冯招
2023-03-14

我不知道怎么做,也不知道为什么,但是。maps-sdk-3.0中缺少xml。0-β。啊。幸运的是,有人上传了翻译:https://github.com/greeshan/Android_4.2.x_multilang我下载了另一种语言字符串。xml并将其复制到\AndroidStudioProjects\MyAppWithMap\app\libs\maps-sdk-3.0。0-β。aar\res\values\folder,现在它可以工作了。

董弘新
2023-03-14

只需将这些添加到您的应用程序字符串中。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>
 类似资料: