AndroidManifestの「tools:targetApi={"version"}」って?
概要
AndroidStudioでプロジェクトを作成した時、AndroidManifest.xmlにあるtools:targetApi={"version"}
に〜が入っていて、かつ他の属性はandroid:icon="@mipmap/ic_launcher"
のようにandroid:icon
なのでこれは何か気になり調査した。
対象コード
app > manifest > AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<application
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.SearchGitHubRepository"
tools:targetApi="31"> ★この行に警告が出ていた
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
そもそもAndroidManifestとは
https://developer.android.com/guide/topics/manifest/manifest-intro?hl=ja
アプリに関する重要な情報を Android ビルドツール、Android オペレーティング システム、Google Play に対して説明するもの
構成
<manifest>と <application>の要素は必須かつ一回しか書けない。
<manifest>内に<application>を含む構成である必要がある。
<manifest>
<application>
</application>
</manifest>
最小限の構成
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<application>
</application>
</manifest>
android
= "http://schemas.android.com/apk/res/android"というイメージ
<manifest>内にある<application>等で使用する際にandroid:label="@string/app_name"
のように省略できる。
要素のリファレンス
https://developer.android.com/guide/topics/manifest/manifest-intro?hl=ja#reference
基本的にここに書かれている。
ツール属性のリファレンス
https://developer.android.com/studio/write/tool-attributes?hl=ja
tools:targetApi
について
不明瞭だったhttps://developer.android.com/studio/write/tool-attributes?hl=ja#toolstargetapi
Java コードの @TargetApi
アノテーションと同機能。
Discussion