Search Unity

CFBundleIdentifier Collision issue in prime31 plugin

Discussion in 'Editor & General Support' started by MobApps, Nov 24, 2015.

  1. MobApps

    MobApps

    Joined:
    Aug 5, 2013
    Posts:
    17
    I am using prime31 storekit plugin for MAC. At the time of app submission it gives "CFBundleIndentifier Collision" issue as below. I tried very much to solve this issue since 3 days but no luck.
    Can any one have solution for this issue?

    Thanks in advance.
     

    Attached Files:

  2. tonemcbride

    tonemcbride

    Joined:
    Sep 7, 2010
    Posts:
    1,089
    I also had this issue, seems like a new requirement from Apple that all bundle identifiers have to be unique. To fix it I modified the info.plist files for the 2 plugins (inside the plugins .bundle) and added my company name to the end.

    e.g. Changed this:

    Code (CSharp):
    1.     <key>CFBundleIdentifier</key>
    2.     <string>com.prime31.StoreKitPlugin</string>
    3.  
    to

    Code (CSharp):
    1.     <key>CFBundleIdentifier</key>
    2.     <string>com.prime31.StoreKitPlugin.CompanyName</string>
    3.  
    It's discussed here: http://stackoverflow.com/questions/34613483/itms-90511-cfbundleidentifier-collision
     
    ilmario likes this.