Post

Replies

Boosts

Views

Activity

Reply to How to detect if an iPad has GPS
Unfortunately, there is no direct way to query for such a thing. However, some workarounds have been sued in the past. None are perfect. Some to consider: request location and if altitude value is present you have gps. match useragent/device model against a table of known devices with GPS (will need to be maintained) check connection (if on cellular, it will have GPS)
Topic: App & System Services SubTopic: Hardware Tags:
May ’21
Reply to App review process
If the app can be a simple website, it has no reason to be a native app.
Replies
Boosts
Views
Activity
May ’21
Reply to App Store Connect
Can you replicate the vetting process within the app? What do you mean by "a log of all the IDs of users"... emails? transaction ID? device ID? You will only get transaction IDs. If you want an email or something identifiable you will need to ask the user to register in some way.
Replies
Boosts
Views
Activity
May ’21
Reply to When sending an SMS from iPad, the country code of the recipient is automatically changed.
I noticed when a country code is missing the device adds the default country code for the device in use. If the provided phone number does not include it, make sure to request it.
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
May ’21
Reply to App rejected because reviewer can't connect
Test without using the local network and see the error returned.
Replies
Boosts
Views
Activity
May ’21
Reply to How to detect if an iPad has GPS
Unfortunately, there is no direct way to query for such a thing. However, some workarounds have been sued in the past. None are perfect. Some to consider: request location and if altitude value is present you have gps. match useragent/device model against a table of known devices with GPS (will need to be maintained) check connection (if on cellular, it will have GPS)
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
May ’21
Reply to In‑app purchase restore doesn't work
"But Apple isn't responding." what error are you getting, timeout?
Replies
Boosts
Views
Activity
May ’21
Reply to How to view list of subscription orders?
No, this is not offered out of the box. You need to create it for yourself: keep track of transactions then register for server updates to know when a subscription expires. You can also verify receipts to get the real-time status.
Replies
Boosts
Views
Activity
May ’21
Reply to CSS code only for Mail
Not directly. You will need to use a responsive/adaptive layout.
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
May ’21
Reply to Website not working on Apple products
When you say "it doesn't work", what error are you seeing?
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
May ’21
Reply to Get list of all apps released/updated before Sept,2018 from my Appstore console
This will only query live apps but you can use iTunes Search API ( https://developer.apple.com/library/archive/documentation/AudioVideo/Conceptual/iTuneSearchAPI/Searching.html#//apple_ref/doc/uid/TP40017632-CH5-SW1 ). The response includes "currentVersionReleaseDate" and "releaseDate"
Replies
Boosts
Views
Activity
May ’21
Reply to Voucher Code IAP Violation?? 🤷‍♂️
You could create a new in-app purchase that unlocks the same feature and set the price to FREE. If the user provides the code before unlocking, use this new in-app identifier ID.
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
May ’21
Reply to Restore Purchase Feature
Purchases are tied to one ID (or family if set up). The user will need to use the same AppleID for a restore feature to work.
Topic: App & System Services SubTopic: StoreKit Tags:
Replies
Boosts
Views
Activity
May ’21
Reply to Mailto url encoding issue iOS 14.6
It's a Safari bug. Works fine WebViews.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
May ’21
Reply to How to Get CellID, MCC, MNC, LAC, and Network in iOS 13 from Objective c?
As you discovered you can only get Carrier name, MCC, MNC, and Country code. CellID, LAC etc are not exposed via the public APIs.
Replies
Boosts
Views
Activity
May ’21
Reply to Dynamic app icon from URL image
Icon files need to be bundled and listed in your plist file therefore they may not be dynamically added (only set).
Replies
Boosts
Views
Activity
May ’21