An App ID is a two-part string used to identify one or more apps from a single development team.

Posts under App ID tag

125 Posts

Post

Replies

Boosts

Views

Activity

ITMS-90076: Potential Loss of Keychain Access
I have App Store Connect issues, after when I transferred application another account. ITMS-90076: Potential Loss of Keychain Access - The previous version of software has an application-identifier value of ['oldID.iosapp'] and the new version of software being submitted has an application-identifier of ['newID.iosapp']. This will result in a loss of keychain access. development team changed and what can I do ?
3
2
10k
Oct ’21
Integration AppsFlyer in SwiftUI
Hi everyone, The question is not how to integrate technically, but logically. Let me explain. If I want that Appsflyer Tracking well, I have to have a published app or pending approval status. For 1st option I need to put link to app in App Store, in 2nd I need to put iTunes App ID (or App ID). And I can't understand how to do that right. First of all do I need to upload my app to App Store to have pending approval status? Will I get App ID to create SDK key? And after that setting SDK by Appsflyer and re-upload my app? Or waiting while my app is publisher and after that with new update to re-upload my app already with Appsflyer SDK? On which stage can I get App ID? Sorry it will be my first uploading to App Store. And I don't want to re-upload again after adding the new SDK. I can't understand how to do it right. Thanks for any help and advices!
1
0
1.6k
Sep ’21
Some question about changing the app ID prefix
I want to change the app ID prefix of my application to my team ID.Because the current app ID was created long time ago and it is not as same as my team ID.In this case, I have some questions.1. If I change the app ID prefix, the app ID of my App should be changed. When the app ID is changed, can the new version application (with the new app ID) and the old version application (with the old app ID) be recongnized as the same application? In another word, when user update new version application, will the old version application be overwritten by the new version application?2. In my application, I provide a Auto-Renewable Subscriptions by using in-app purchase. When I change the app ID prefix, can subscribe user keep his subscription status after updating the application to the new version?3. Can I change the app ID prefix by myself or I need to ask apple support to do this for me? Please tell me the procedure for changing the app ID prefix.ThanksFeng
Topic: Code Signing SubTopic: General Tags:
1
0
1.5k
Sep ’21
Invalid RSA private key
This is my code for generating the token. String rsaPrivateKey = "-----BEGIN PRIVATE KEY-----\n" +  "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" +  "-----END PRIVATE KEY-----";  rsaPrivateKey = rsaPrivateKey.replace("-----BEGIN PRIVATE KEY-----", "");   rsaPrivateKey = rsaPrivateKey.replace("-----END PRIVATE KEY-----", "");   PKCS8EncodedKeySpec keySpec = new PKCS8EncodedKeySpec(Base64.getMimeDecoder().decode(rsaPrivateKey));   KeyFactory kf = KeyFactory.getInstance("RSA");   PrivateKey privKey = kf.generatePrivate(keySpec); String token = Jwts.builder() .setHeaderParam(JwsHeader.ALGORITHM,"ES256") .setHeaderParam(JwsHeader.KEY_ID,"ABC123DEFG" ) // key id I got from Apple         .setIssuer("DEF123GHIJ")         .setAudience("https://appleid.apple.com")         .setSubject("com.mytest.app") // app id com.app.id         .setExpiration(new Date(System.currentTimeMillis() + expiration))         .setIssuedAt(new Date(System.currentTimeMillis()))         .signWith(SignatureAlgorithm.ES256, privKey) // ECDSA using P-256 and SHA-256         .compact(); but I get following error: Exception in thread "main" java.security.spec.InvalidKeySpecException: java.security.InvalidKeyException: Invalid RSA private key at sun.security.rsa.RSAKeyFactory.engineGeneratePrivate(RSAKeyFactory.java:217) at java.security.KeyFactory.generatePrivate(KeyFactory.java:372) at com.rjil.cloud.drive.utils.AppleCodeGenerator.main(AppleCodeGenerator.java:35) Caused by: java.security.InvalidKeyException: Invalid RSA private key at sun.security.rsa.RSAPrivateCrtKeyImpl.parseKeyBits(RSAPrivateCrtKeyImpl.java:214) at sun.security.pkcs.PKCS8Key.decode(PKCS8Key.java:343) at sun.security.pkcs.PKCS8Key.decode(PKCS8Key.java:356) at sun.security.rsa.RSAPrivateCrtKeyImpl.<init>(RSAPrivateCrtKeyImpl.java:91) at sun.security.rsa.RSAPrivateCrtKeyImpl.newKey(RSAPrivateCrtKeyImpl.java:75) at sun.security.rsa.RSAKeyFactory.generatePrivate(RSAKeyFactory.java:316) at sun.security.rsa.RSAKeyFactory.engineGeneratePrivate(RSAKeyFactory.java:213) ... 2 more Caused by: java.io.IOException: Version must be 0 at sun.security.rsa.RSAPrivateCrtKeyImpl.parseKeyBits(RSAPrivateCrtKeyImpl.java:192) ... 8 more
Topic: Code Signing SubTopic: General Tags:
1
0
3.9k
Jul ’21
ITMS-90076: Potential Loss of Keychain Access
I have App Store Connect issues, after when I transferred application another account. ITMS-90076: Potential Loss of Keychain Access - The previous version of software has an application-identifier value of ['oldID.iosapp'] and the new version of software being submitted has an application-identifier of ['newID.iosapp']. This will result in a loss of keychain access. development team changed and what can I do ?
Replies
3
Boosts
2
Views
10k
Activity
Oct ’21
Integration AppsFlyer in SwiftUI
Hi everyone, The question is not how to integrate technically, but logically. Let me explain. If I want that Appsflyer Tracking well, I have to have a published app or pending approval status. For 1st option I need to put link to app in App Store, in 2nd I need to put iTunes App ID (or App ID). And I can't understand how to do that right. First of all do I need to upload my app to App Store to have pending approval status? Will I get App ID to create SDK key? And after that setting SDK by Appsflyer and re-upload my app? Or waiting while my app is publisher and after that with new update to re-upload my app already with Appsflyer SDK? On which stage can I get App ID? Sorry it will be my first uploading to App Store. And I don't want to re-upload again after adding the new SDK. I can't understand how to do it right. Thanks for any help and advices!
Replies
1
Boosts
0
Views
1.6k
Activity
Sep ’21
Some question about changing the app ID prefix
I want to change the app ID prefix of my application to my team ID.Because the current app ID was created long time ago and it is not as same as my team ID.In this case, I have some questions.1. If I change the app ID prefix, the app ID of my App should be changed. When the app ID is changed, can the new version application (with the new app ID) and the old version application (with the old app ID) be recongnized as the same application? In another word, when user update new version application, will the old version application be overwritten by the new version application?2. In my application, I provide a Auto-Renewable Subscriptions by using in-app purchase. When I change the app ID prefix, can subscribe user keep his subscription status after updating the application to the new version?3. Can I change the app ID prefix by myself or I need to ask apple support to do this for me? Please tell me the procedure for changing the app ID prefix.ThanksFeng
Topic: Code Signing SubTopic: General Tags:
Replies
1
Boosts
0
Views
1.5k
Activity
Sep ’21
How can I change a service identifier to app identifier?
By accident I made a service identifier with my app bundle ID which should have been used for app identifier. when I try to make app identifier it says I can't use the bundle ID cuz I already used for service identifier. How can I change a service identifier to app identifier?
Replies
0
Boosts
0
Views
631
Activity
Aug ’21
Invalid RSA private key
This is my code for generating the token. String rsaPrivateKey = "-----BEGIN PRIVATE KEY-----\n" +  "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" +  "-----END PRIVATE KEY-----";  rsaPrivateKey = rsaPrivateKey.replace("-----BEGIN PRIVATE KEY-----", "");   rsaPrivateKey = rsaPrivateKey.replace("-----END PRIVATE KEY-----", "");   PKCS8EncodedKeySpec keySpec = new PKCS8EncodedKeySpec(Base64.getMimeDecoder().decode(rsaPrivateKey));   KeyFactory kf = KeyFactory.getInstance("RSA");   PrivateKey privKey = kf.generatePrivate(keySpec); String token = Jwts.builder() .setHeaderParam(JwsHeader.ALGORITHM,"ES256") .setHeaderParam(JwsHeader.KEY_ID,"ABC123DEFG" ) // key id I got from Apple         .setIssuer("DEF123GHIJ")         .setAudience("https://appleid.apple.com")         .setSubject("com.mytest.app") // app id com.app.id         .setExpiration(new Date(System.currentTimeMillis() + expiration))         .setIssuedAt(new Date(System.currentTimeMillis()))         .signWith(SignatureAlgorithm.ES256, privKey) // ECDSA using P-256 and SHA-256         .compact(); but I get following error: Exception in thread "main" java.security.spec.InvalidKeySpecException: java.security.InvalidKeyException: Invalid RSA private key at sun.security.rsa.RSAKeyFactory.engineGeneratePrivate(RSAKeyFactory.java:217) at java.security.KeyFactory.generatePrivate(KeyFactory.java:372) at com.rjil.cloud.drive.utils.AppleCodeGenerator.main(AppleCodeGenerator.java:35) Caused by: java.security.InvalidKeyException: Invalid RSA private key at sun.security.rsa.RSAPrivateCrtKeyImpl.parseKeyBits(RSAPrivateCrtKeyImpl.java:214) at sun.security.pkcs.PKCS8Key.decode(PKCS8Key.java:343) at sun.security.pkcs.PKCS8Key.decode(PKCS8Key.java:356) at sun.security.rsa.RSAPrivateCrtKeyImpl.<init>(RSAPrivateCrtKeyImpl.java:91) at sun.security.rsa.RSAPrivateCrtKeyImpl.newKey(RSAPrivateCrtKeyImpl.java:75) at sun.security.rsa.RSAKeyFactory.generatePrivate(RSAKeyFactory.java:316) at sun.security.rsa.RSAKeyFactory.engineGeneratePrivate(RSAKeyFactory.java:213) ... 2 more Caused by: java.io.IOException: Version must be 0 at sun.security.rsa.RSAPrivateCrtKeyImpl.parseKeyBits(RSAPrivateCrtKeyImpl.java:192) ... 8 more
Topic: Code Signing SubTopic: General Tags:
Replies
1
Boosts
0
Views
3.9k
Activity
Jul ’21