简体   繁体   中英

How to change the .mobileprovision in xcode

can we change the .mobileprovision file in xcode. I want to change like this

from this

  <dict>
            <key>application-identifier</key>
            <string>ZYR93MSDF.com.text.catalogapp.Coredata</string>
            <key>get-task-allow</key>
            <true/>
            <key>keychain-access-groups</key>
            <array>
                <string>RSTY3GX5ZY.*</string>
            </array>
        </dict>

to this

<key>keychain-access-groups</key>
    <array>
        <string>ZYR93MSDF.com.text.catalogapp.Coredata</string>
    </array>
    <key>com.apple.security.application-groups</key>
    <string>ZYR93MSDF.com.text.catalogapp.Coredata</string>

but can't do this if i change something in .mobileprovision file it is not installed. please help me.

You shouldn't edit provision profile by hand. Go to Developers portal and edit provision portal there. Then in Xcode go to Preference - Account and refresh profiles

Also you can use iPhone Configuration Utility 3.5 for Mac OS X tool for managing provision profiles

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM