Other New approach for Icon-Store and Xcode 9+

D

Deleted member 103

Guest
Hi,
is only an information.

This is the Google translation:
This icon is used in the App Store. For apps developed with Xcode version 9 (or later), add the icon in the build. For apps developed with earlier Xcode versions, add the icon here.

icon-store.PNG
 
D

Deleted member 103

Guest
This is already implemented in B4i. The icon is set inside the project.
Erel, I know that.
I have my post, unfortunately, as always, is not made clear enough.:(

The problem is if you want to make two different app with the same code, for example, a Lite and a Pro version.
In this case, two different icons must be provided.
Until Xcode 8 you still had the opportunity to change the icon directly in Apple Console, from Xcode 9+ the icon must be integrated in the app.

I had forgotten in my case that one should use this code:
B4X:
    #If Lite
        #ApplicationLabel: App-Lite
        #CustomBuildAction: 1, c:\windows\system32\cmd.exe, /c copy ..\Special-Lite\*.* ..\Files\Special\*.*
    #End If

    #If Pro
        #ApplicationLabel: App-Pro
        #CustomBuildAction: 1, c:\windows\system32\cmd.exe, /c copy ..\Special-Pro\*.* ..\Files\Special\*.*
    #End If
 
Upvote 0
Top