Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SKStoreReviewController.requestReview() popup is not showing in TestFlight build

I used SKStoreReviewController.requestReview() in my app but Rate app popup is not showing in test Flight build.

if #available(iOS 10.3, *) {
        SKStoreReviewController.requestReview()
} 

In development or Add hoc build Submit button is disable which is perfectly fine. But in Test Flight build it not showing anything.

What is the issue ?

like image 784
Moiz Irshad Avatar asked Oct 16 '17 12:10

Moiz Irshad


People also ask

Can I debug TestFlight app?

The app works perfectly in debug. However in testflight, when cellular network is enabled, the app randomly crashes just after receiving an api response. The api response provides a text response, in json format. This text response is updated on the screen using a completion handler from the api call.

How do you add Testerlight TestFlight?

Using public links to invite testers Simply go to your app's TestFlight page, click an existing group, and click Enable Public Link. You can then copy the link and share it on social media, messaging platforms, email campaigns, and more.

How add iOS build to TestFlight?

Log in to https://itunesconnect.apple.com In your app, click on TestFlight in the top menu. You should see the build uploaded. Be sure to note down your build number for adding to a beta group. By default you will be able to test your app yourself, simply by installing the TestFlight app on your phone.


1 Answers

Don't worry!

"This method has no effect when you call it in an app that you distribute using TestFlight"

enter image description here

see more: https://developer.apple.com/documentation/storekit/skstorereviewcontroller/2851536-requestreview

like image 189
Tritmm Avatar answered Nov 07 '22 16:11

Tritmm