前提・実現したいこと
AndroidStudioでAPIを勉強しはじめました。
ひとまずGoogle Maps Activityでプロジェクトを作って、GoogleMapのAPIを入れました。
これでエミュレータを起動しただけなのに、早速エラーになるので修正したい。
発生している問題・エラーメッセージ
The minCompileSdk (31) specified in a dependency's AAR metadata (META-INF/com/android/build/gradle/aar-metadata.properties) is greater than this module's compileSdkVersion (android-30). Dependency: androidx.core:core-ktx:1.7.0. AAR metadata file: C:\Users*****.gradle\caches\transforms-3\43709c06b605244e4fcdef6e5a127101\transformed\jetified-core-ktx-1.7.0\META-INF\com\android\build\gradle\aar-metadata.properties. The minCompileSdk (31) specified in a dependency's AAR metadata (META-INF/com/android/build/gradle/aar-metadata.properties) is greater than this module's compileSdkVersion (android-30). Dependency: androidx.core:core:1.7.0. AAR metadata file: C:\Users*****.gradle\caches\transforms-3\22fc58c1aba25a38624b19fcaec4a163\transformed\core-1.7.0\META-INF\com\android\build\gradle\aar-metadata.properties.
該当のソースコード
kotlin
1<resources> 2 <!-- 3 TODO: Before you run your application, you need a Google Maps API key. 4 5 To get one, follow this link, follow the directions and press "Create" at the end: 6 7 https://console.developers.google.com/flows/enableapi?apiid=maps_android_backend&keyType=CLIENT_SIDE_ANDROID&r=5E:83:89:19:D4:64:3E:6D:8F:B3:46:60:CB:E7:38:04:53:82:3E:6F%3Bcom.example.samplegooglemap 8 9 You can also add your credentials to an existing key, using these values: 10 11 Package name: 12 com.example.samplegooglemap 13 14 SHA-1 certificate fingerprint: 15 5E:83:89:19:D4:64:3E:6D:8F:B3:46:60:CB:E7:38:04:53:82:3E:6F 16 17 Alternatively, follow the directions here: 18 https://developers.google.com/maps/documentation/android/start#get-key 19 20 Once you have your key (it starts with "AIza"), replace the "google_maps_key" 21 string in this file. 22 --> 23 <string name="google_maps_key" templateMergeStrategy="preserve" translatable="false">AI****</string> 24</resources>
試したこと
手持ちの書籍(今知ったんですけど2019年発行のものだから少々古い)によると
右上「Gradle」ウィンドウを開いて、androidDepenciesをダブルクリックしてreleaseRuntimeClasspathを見ると~
とあるのですが、そのそもそのandroidDepencies自体が見当たらないので行き詰っている。
補足情報(FW/ツールのバージョンなど)
Android Studio Arctic Fox | 2020.3.1
回答1件
あなたの回答
tips
プレビュー