6,172 questions
0
votes
0
answers
30
views
Is it possible to change bundle identifier easily once xcode project is complete with Firebase
Prior to starting the update, I was getting errors from Firebase that the bundle identifier was not working for the app I had created so in order to update my app, I created a new Firebase project ...
0
votes
0
answers
19
views
UnityCloudBuild: Codesigned with Sandbox enabled, but still get ITMS-90296: App sandbox not enabled
I've made an MacOS app with Unity Cloud Build and I want to sign and distribute it using App Store Connect.
I download the compiled .app file and use codesign to sign all the appropriate files. I also ...
17
votes
5
answers
21k
views
The archive did not include a dSYM for the Flutter.framework with the UUIDs
I'm new to Flutter iOS development. Trying to publish an app on the Apple app store. But after building the archive, when I try to distribute or validate the app, Xcode keeps me showing
The archive ...
0
votes
0
answers
12
views
How to retrieve the uploaded App URL after using upload_to_testflight in fastlane?
I am using Fastlane's upload_to_testflight action to upload an app to TestFlight. Here is my current implementation:
upload_to_testflight(
skip_waiting_for_build_processing: true,
api_key_path: ...
1
vote
2
answers
2k
views
Is it possible to know if a flutter app is running on Production or in a Test Environment?
Google Play has different deployment environments for Android apps, like Production, Open Test track, Closed Test track, and Internal Test.
Similarly, Apple App Store Connect allows us to deploy ...
6
votes
4
answers
8k
views
Generating token for App Store Connect API
I need to generate JWT token for Store Connect API. I'm trying use jwt ruby gem ruby-jwt. This is my token generating code,
payload = {
'iss': my_issuer_id_from_db,
'exp': ...
2
votes
1
answer
136
views
Why is my App Store Connect API Key not working to create a JWT in Postman?
I'm trying to make API calls to App Store Connect API and generate the JWT right in Postman.
I have the private key downloaded from my profile and the payload set as
{
"sub": "user&...
3
votes
0
answers
2k
views
Cannot get JWT (json web token) to work with Apple App Store Connect API in PHP
I get a 401/Not Authorized return for my JTW using PHP with Apple's App Store Connect API.
Using php 7.1.3, I've tried various libraries and raw php (code below). I'm pretty sure the header and ...
0
votes
0
answers
28
views
How to Use Bluetooth in a React Native App Without Violating App Store Guidelines?
Requesting Bluetooth Access Prompt
Requesting Notification Access Promp
I’m building a React Native app that uses Bluetooth functionality exclusively to connect an IoT device to the internet. For this,...
6
votes
1
answer
1k
views
How to deal with StoreKit 2 on Airplane mode or offline?
I'm trying to add/manage my first in-app purchase (non-consumable) on my iOS app and I just discovered that StoreKit 2 doesn't work well offline.
These past days, I used to display (or not) the ...
-1
votes
0
answers
15
views
How to fill in correctly App Store privacy policy when using AWS services?
I’ve developed some sort of ‘Tinder’ clone application, that’s using geo location and user profile data to match between users.
When deploying it to App Store, I’m faced with un-clear, legal jargon ...
0
votes
0
answers
21
views
Only 'Users and Access' Visible on App Store Connect – Apps Not Showing
I’m facing an issue with my App Store Connect account where only the "Users and Access" section is visible. All of my apps are not showing up, and I cannot access the usual sections like &...
2
votes
2
answers
447
views
Can we automate Apple App Store Connect app update with "Whats New" localization?
I have my app in multiple languages and the UI requires translated versions of "Whats New" which is a lot of clicking. Can we include perhaps a release notes in the IPA to get the whats new ...
1
vote
2
answers
7k
views
Authentication credentials are missing or invalid app store connect api python
I am trying to use sales report API from App Store Connect API with Python script here.
import jwt
import requests
import time
import json
KEY_ID = "XXXXXXXXX"
ISSUER_ID = "xxxxxxxx-...
4
votes
2
answers
3k
views
How to get access to beta device logs using Apple's TestFlight
In the old TestFlightApp, there was an SDK that allowed developers to log info on the device and then access those logs from the TestFlight website.
After the Apple takeover of TestFlight, I'm not ...