Last Updated on 2021-06-28 by toshiikuo
体系的にまとまっているものがなく、混乱したのでまとめる。
スマホ向けのAndroidアプリのリリース方法は知っている前提。
スマホ向け同様にアプリを開発
私はFlutterで作ったが、スマホアプリとの違いは画面の大きさくらい。
細かな違いはたくさんあるのでそこは作りたいアプリに合わせて調べながらやる。
android/app/src/main/AndroidManifest.xmlを編集
manifestエレメントの中に以下を追加
<uses-feature android:name="android.hardware.type.watch"/> <meta-data
applicationエレメントの中に以下を追加
android:name="com.google.android.wearable.standalone"
android:value="true" />
PlayConsoleでWearの設定を追加。
以下の手順に従って設定。
- In the Play Console, go to Setup and click to open up more options.
- Go to Advanced Settings, select the Release types tab and click Add release type.
- Click Wear OS.
あとは、普通のアプリと同じように公開するだけ。
参照元
https://developer.android.com/training/wearables/apps/packaging