この記事のポイント
- 2025 年 9 月 22 日(月)に配信された「AI 壁紙(AI Wallpapers)」アプリバージョン v1.0.789664661 アップデートのアプリ内コードを確認した結果、既存の壁紙「地形(Unexpected Landscape)」に対するプロンプトワードの拡充などを発見
- “衛星写真のような” “彩度を落とした配色” “ミステリアスな雰囲気” といったプロンプトワードが新たに追加
- 除外ワード “road(道路)” “boat(ボート)” “vessel(船舶)” “ship(船)” も追加され、壁紙からこの除外ワードに関連する要素を取り除くこともできるように
Google が約 2 年前の 2023 年 10 月上旬に「Pixel 8」「Pixel 8 Pro」「Pixel 8a」向けとしてリリースした AI 活用オリジナル壁紙作成アプリ「AI 壁紙(AI Wallpapers)」に対し、2025 年 9 月 22 日(月)にアプリバージョン v1.0.789664661 アップデートが配信開始されました。
「AI 壁紙」アプリのアップデートは約 1 年半ぶりのアップデートで、かなり久しぶりです。ただアップデート内容は公開されていないため、新機能などは不明となっています。しかし当サイトが独自に「AI 壁紙」アプリバージョン v1.0.789664661 のアプリ内コードを確認した結果、既存の壁紙「地形(Unexpected Landscape)」に対するプロンプトワードの拡充などを発見しました。
「AI 壁紙」アプリ v1.0.789664661 アップデートでは、新しい壁紙が追加されたわけではなく、既存の壁紙「地形(Unexpected Landscape)」に利用できるプロンプトワードが拡充されています。具体的には、“衛星写真のような” “彩度を落とした配色” “ミステリアスな雰囲気” といったプロンプトワードが新たに追加され、選択できるようになりました。
<string name="prompt_back_end_unexpected_landscape_juno3b">Beautiful untamed <unexpected_landscape_feature_options>. The image is in satellite-like, top-down aerial perspective from directly above. The image is in <unexpected_landscape_color_options> muted colors and a desaturated color palette with low contrast. Mysterious atmosphere. The overall effect should be one of somberness and subtle mystery, where colors are softened, and vibrant hues are notably absent. The intensity of natural colors has been significantly toned down</string>
また除外ワード “road(道路)” “boat(ボート)” “vessel(船舶)” “ship(船)” も追加され、壁紙からこの除外ワードに関連する要素を取り除くこともできるようになっています。
<string name="prompt_denylist_unexpected_landscape">person, car, cars, 2d, flat, fake, lines, cropped, road, boat, vessel, ship</string>
「AI 壁紙」アプリ v1.0.789664661 アップデートではこのほかにも、アプリダウンロードをスムーズにする要素や、インストールしたアプリのアプリサイズを縮小する要素なども確認できています。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
...
android:requiredSplitTypes="base__abi,base__density"
android:splitTypes=""
...
<application
...
android:extractNativeLibs="false"
...
</application>
</manifest>
<application
...
<activity
android:name="com.google.android.apps.aiwallpapers.application.WallpaperEditorActivity"
android:exported="true"
android:launchMode="singleInstance"
android:configChanges="smallestScreenSize|screenSize|screenLayout|orientation">
<layout
android:gravity="center"
android:defaultWidth="2560dp"
android:defaultHeight="1440dp"/>
</activity>
...
<receiver
android:name="com.google.android.libraries.phenotype.client.stable.AccountRemovedBroadcastReceiver"
android:exported="true"
android:process="">
<intent-filter>
<action android:name="android.accounts.action.ACCOUNT_REMOVED"/>
</intent-filter>
</receiver>
<receiver
android:name="com.google.android.libraries.phenotype.client.stable.PhenotypeUpdateBackgroundBroadcastReceiver"
android:permission="com.google.android.gms.permission.PHENOTYPE_UPDATE_BROADCAST"
android:exported="true"
android:process="">
<intent-filter>
<action android:name="com.google.android.gms.phenotype.UPDATE"/>
</intent-filter>
</receiver>
...
</application>
<application
...
<meta-data
android:name="com.android.vending.splits.required"
android:value="true"/>
<meta-data
android:name="com.android.stamp.source"
android:value="https://play.google.com/store"/>
<meta-data
android:name="com.android.stamp.type"
android:value="STAMP_TYPE_DISTRIBUTION_APK"/>
<meta-data
android:name="com.android.vending.splits"
android:resource="@xml/splits0"/>
<meta-data
android:name="com.android.vending.derived.apk.id"
android:value="1"/>
</application>
コメントを残す