i'm developing an app. One of the firs thing i do (in AppDelegate) is to invoke OneSignal's initwithlaunchingoptions(...) This automatically makes my app displays "App wants to send notifications", asking for permissions. During my app lifecycle, i'll need other permissions from user (like calendar). I'd like to display (BEFORE all the permissions) a brief AlertView explaining what i'll ask and why. But how can i accomplish this if i can't move the OneSignal init from AppDelegate while my "explaining alert" happens only in viewDidLoad of the Main ViewController ?
Thanks.
Victor