Key Points of This Article
- Analysis of the app code for “AI Wallpapers” version v1.0.789664661, released on Monday, September 22, 2025, revealed expansions to prompt words for the existing wallpaper “Unexpected Landscape.”
- New prompt words such as “satellite-like,” “muted color palette,” and “mysterious atmosphere” have been added.
- The exclusion words “road,” “boat,” “vessel,” and “ship” have also been added, allowing users to remove elements related to these terms from their wallpapers.
Google’s AI-powered original wallpaper creation app, “AI Wallpapers,” initially released for “Pixel 8,” “Pixel 8 Pro,” and “Pixel 8a” in early October 2023, received an update to version v1.0.789664661 on Monday, September 22, 2025. The update for the “AI Wallpapers” app marks its first update in about a year and a half, making it quite a long time between releases. However, the update details have not been publicly disclosed, leaving new features unknown. Nevertheless, our site’s independent analysis of the app code for “AI Wallpapers” version v1.0.789664661 has uncovered expansions to prompt words for the existing wallpaper “Unexpected Landscape.”
The “AI Wallpapers” app version v1.0.789664661 update does not introduce new wallpapers. Instead, it expands the available prompt words for the existing wallpaper “Unexpected Landscape.” Specifically, new prompt words such as “satellite-like,” “muted color palette,” and “mysterious atmosphere” have been added and are now selectable.
<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>
Additionally, exclusion words like “road,” “boat,” “vessel,” and “ship” have been added, enabling users to exclude elements related to these terms from their wallpapers.
<string name="prompt_denylist_unexpected_landscape">person, car, cars, 2d, flat, fake, lines, cropped, road, boat, vessel, ship</string>
Furthermore, the “AI Wallpapers” app v1.0.789664661 update includes other elements that facilitate smoother app downloads and reduce the overall app size for installed applications.
<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>
コメントを残す