IBM Worklight - Can't change app icon in both Worklight Console and device

前端 未结 1 1053
忘掉有多难
忘掉有多难 2020-12-22 07:19

I want to change the application icon from the default one to custom one.

I\'m using this element in application-descriptor.xml



        
相关标签:
1条回答
  • 2020-12-22 08:23

    The thumbnailImage element in application-descriptor.xml does not control the application icon you see in a device/simulator.

    • For changing the application icon in Worklight Console, see my answer in this question: IBM Worklight - Thumbnail image from project is not updated in Worklight Console.

    • For changing the application icon of the application itself, in iOS:

      1. Open the iphone\nativeResources\Resources folder
      2. Copy your icon(s) to the folder
      3. Right-click on the application folder and choose:
        • Run As >> Build All and Deploy or
        • Run As >> Xcode project (if on Mac)
      4. Build the generated Xcode project in Xcode
      5. Run on device / iOS Simulator

    The size and filename of the icon varies depending on which icon you want to change.
    Follow Apple's guidelines in this article: Custom Icon and Image Creation Guidelines.

    Basically, look the naming convention as seen in iphone\native\Resources (not to be confused with the other path I mentioned above). Your icon filename must match the name of the existing icon in order to replace it during the build operation.

    0 讨论(0)
提交回复
热议问题