使用codesign -d --entitlements-应用程序的路径
我们可以看到.ipa的代码符号权利。
例如,来自AppStore的Instagram应用。
</array>
<key>application-identifier</key>
<string>MH9GU9K5PX.com.burbn.instagram</string>
<key>com.apple.developer.ubiquity-kvstore-identifier</key>
<string>777W53UFB2.com.burbn.instagram</string>
<key>com.apple.developer.team-identifier</key>
<string>777W53UFB2</string>
<key>aps-environment</key>
<string>production</string>
<key>com.apple.developer.icloud-container-environment</key>
<string>Production</string>
<key>com.apple.developer.associated-domains</key>
<array>
在运行时是否可以检索com.apple.developer.team-identifier?
使用此代码段
+ (NSString *)bundleSeedID {
NSDictionary *query = [NSDictionary dictionaryWithObjectsAndKeys:
(__bridge NSString *)kSecClassGenericPassword, (__bridge NSString *)kSecClass,
@"bundleSeedID", kSecAttrAccount,
@"", kSecAttrService,
(id)kCFBooleanTrue, kSecReturnAttributes,
nil];
CFDictionaryRef result = nil;
OSStatus status = SecItemCopyMatching((__bridge CFDictionaryRef)query, (CFTypeRef *)&result);
if (status == errSecItemNotFound)
status = SecItemAdd((__bridge CFDictionaryRef)query, (CFTypeRef *)&result);
if (status != errSecSuccess)
return nil;
NSString *accessGroup = [(__bridge NSDictionary *)result objectForKey:(__bridge NSString *)kSecAttrAccessGroup];
NSArray *components = [accessGroup componentsSeparatedByString:@"."];
NSString *bundleSeedID = [[components objectEnumerator] nextObject];
CFRelease(result);
return bundleSeedID;
}
我们将获得应用前缀ID(有时应用前缀ID可能与团队ID有所不同。
如何在我的应用程序中访问com.apple.developer.team-identifier?
答案 0 :(得分:0)
此信息以embedded.mobileprovision
的形式存储在应用程序中,这意味着您可以阅读并提取所需内容。它主要是plist数据,周围还有一些额外的数据。一旦删除了多余的数据,就可以像plist一样对其进行解码。
该网站有更多详细信息和良好的示例代码:https://blog.process-one.net/reading-ios-provisioning-profile-in-swift/