Posts

Post not yet marked as solved
1 Replies
1.1k Views
tldr: When using Funding Choices, how can we tell if a user is in the EEA so that we can allow them to go back and change their privacy consent answers? I'm using Google Funding Choices for GDPR consent and to notify users about App Tracking Transparency. https://apps.admob.com/v2/privacymessaging I've got it all integrated and it works well with testing. Users in the EEA are presented a GDPR dialog and others are not. That's great. However, I need a way for those GDPR users to get back in there and change their mind. But any other users that shouldn't be an option (because we can only ask a user about ATT once). Here's the problem – I only want to show a "Manage Privacy" button on the game's settings screen for GDPR users. But I can't figure out how to ask the SDK if GDPR applies in order to do that. I can try always showing the "Manage Privacy" button, so at least it will be there for the GDPR. But then what should that button do for non-GDPR users? If you're using Funding Choices, how are you making your app so that users can go back to that GDPR dialog?
Posted
by weasel.
Last updated
.
Post not yet marked as solved
8 Replies
3.7k Views
I'm working on an app that presents a "Sign In" view controller from a tab bar controller. The user has to sign in before doing anything. Normally the user complets the sign in process and that sign in view controller is dismissed and the user can enjoy all the goodness of the things on the tab bar controller.Note: It's not easy, so far, for us to revise our view hierarchy and we'd really like to keep it.The problem is that if the user presses Menu on the remote control, while on the Sign In screen, they arrive at the tab bar's contents but haven't signed in yet. That's no good. We need the user to complete sign in before seeing that stuff. It's easy for us to add a gesture recognizer to disallow use of the Menu button on the Sign In screen. However, it feels like the Menu button should exit the app at this point because there's nothing else the user can do unless they sign in. So if the user presses Menu from the Sign In screen we'd like to exit the app, but need to that with our own code and can't rely on the system handling it since this view controller isn't the root one.As far as I know there's no approved way to tell our tvOS app to exit gracefully or to pass that menu button press on up to the next view controller. We can use "exit()" but of course that's like a crash and the transition out of the app looks weird.Key questions:Is there any way to tell a tvOS app to exit so that we can handle the Menu button in the way a user will expect in cases like this where our view hierarchy doesn't exactly match how the Menu button works?Besides redoing our view hierarchy... is there some other solution that you can suggest?
Posted
by weasel.
Last updated
.