adaptyteam / AdaptySDK-Flutter

SDK for growing mobile in-app purchases
https://docs.adapty.io/docs/quickstart
MIT License
95 stars 17 forks source link

Why does the user have to sign in with his apple id when first installing an app using Adapty? #55

Closed Tobi696 closed 2 years ago

Tobi696 commented 2 years ago

It kind of affects the UX of the app I am developing. When you open my app, the first screen is a sign in screen with email+password, apple id, facebook or google account. Now, after adding the adapty SDK and calling Adapty.activate(), a popup opens where the user has to sign in with his apple id. I hope you understand that it affects the UX negatively. How can I avoid that?

iwitaly commented 2 years ago

You can check from the source code that Adapty SDK does not affect your UI/UX in any possible way.

Tobi696 commented 2 years ago

@iwitaly it doesn't affect flutter ui, but it triggers a native iOS dialogue where the user has to log in with his apple id.

x401om commented 2 years ago

Hi, @Tobi696! Indeed, you may get this dialog if you have not currently authorized your Apple Id account. In the case of sandbox testing this happens quite often, but in the production environment everything will be fine and the user will not get an authorization prompt unless you manually call the restorePurchases method.

Tobi696 commented 2 years ago

Alright, thank you guys!