iOS 10.3 API
jackcsk opened this issue ยท 11 comments
Just writing to find out if Armchair plans to provide transparent support for iOS 10.3
i.e. call SKStoreReviewController's requestReview()
method on iOS 10.3, and use current routine on iOS 10.2 or below
This is definitely something I will look into as more details emerge.
+1
For those that don't want to wait for the library to add support, you can do this where you setup Armchair:
Armchair.shouldPromptClosure { info -> Bool in
if #available(iOS 10.3, *) {
SKStoreReviewController.requestReview()
return false
} else {
return true
}
}
This needs to be opt-in, so previous expected behavior is not altered. Please add a public var to enable this logic and I will merge in.
@coneybeare
I don't understand. The feature is already opt-in. By default no behavior is altered. To use the new review prompt, simply do this:
Armchair.appID("xxxxxxx")
Armchair.useStoreKitReviewPrompt(true) // This alters the default behavior -- default is false
Yes you're right. Sorry, I misread your comment earlier as in future tense. I just reviewed your PR, looks great.
I cannot see Armchair.useStoreKitReviewPrompt(true) on 4.4, is it disabled for some reason?
We have no version 4.4, are you sure you are looking at the right pod?
Sorry, my mistake. I was using the cocoapod latest version and it didn't support the latest one who supports useStoreKitReviewPrompt. I simply copied the latest codes to my pods file and it works fine now. It would be great if the latest pods will be udpated to support the latest version. :)