Skip to content

Commit 5c6f08b

Browse files
committed
Translated product-page-optimization-alternative-icons to en.
1 parent bde2740 commit 5c6f08b

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed

en/meta/articles.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,5 +54,17 @@
5454
],
5555
"updated_date": "08.02.2022",
5656
"added_date": "08.02.2022"
57+
},
58+
"product-page-optimization-alternative-icons" : {
59+
"title" : "Alternative icons for Product Page Optimization",
60+
"description" : "How to add alternative icons for A/B tests on the application page.",
61+
"category" : "app_store_connect",
62+
"author" : "alxrguz",
63+
"translator": "svtnck",
64+
"keywords" : [
65+
"alternative icons"
66+
],
67+
"updated_date" : "08.02.2022",
68+
"added_date" : "08.02.2022"
5769
}
5870
}
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
With [Product Page Optimization](https://developer.apple.com/app-store/product-page-optimization/) you can create variants of screenshots, promo texts, and icons. Screenshots and text are added to App Store Connect, but icons are added by the developer in the Xcode project.
2+
3+
The documentation says "put the icons in Asset Catalog, send the binary to App Store Connect and use the SDK". But how to upload icons and what kind of SDK - did not say. Let's figure it out, the steps are supported by screenshots.
4+
5+
## Adding icons to Assets
6+
7+
The alternative icon is done in multiple resolutions, just like the main icon. I use [AppIconBuilder](https://apps.apple.com/app/id1294179975). Naming should be whatever you want, but it will show up on App Store Connect.
8+
9+
![Adding icons to Assets](https://cdn.ivanvorobei.by/websites/sparrowcode.io/product-page-optimization-alternative-icons/adding-icons-to-assets.png)
10+
11+
## Settings in Target.
12+
13+
You need Xcode 13 or higher. Select the app targetet and go to the `Build Settings` tab. In the search, type `App Icon` and you will see the `Asset Catalog Compiler` section.
14+
15+
![Settings in target](https://cdn.ivanvorobei.by/websites/sparrowcode.io/product-page-optimization-alternative-icons/adding-settings-to-target.png)
16+
17+
We are interested in 3 parameters:
18+
19+
`Alternate App Icons Sets` - listing the names of the icons you added to the catalog.
20+
21+
`Include All App Icon Assets` - set to `true` to include alternative icons in the assembly.
22+
23+
`Primary App Icon Set Name` - default icon name. Not checked, but most likely the alternate icon can be made the primary icon.
24+
25+
## Assembly.
26+
27+
It remains to build the application and send it for testing.
28+
29+
>Alternative icons will be available after the review.
30+
31+
Now you can build different pages of the app and create links for A/B tests.

0 commit comments

Comments
 (0)