Star-Dust Expert Licensed User Longtime User Jun 19, 2017 #1 I am creating my second Library, and there is a need to request permissions. I would like to include in the Manifest the request for a permit. Is there a way to do this?
I am creating my second Library, and there is a need to request permissions. I would like to include in the Manifest the request for a permit. Is there a way to do this?
Erel B4X founder Staff member Licensed User Longtime User Jun 20, 2017 #2 Yes, with the @Permissions annotation. Example: https://github.com/AnywhereSoftware...esoftware/b4a/admobwrapper/AdViewWrapper.java Upvote 0
Yes, with the @Permissions annotation. Example: https://github.com/AnywhereSoftware...esoftware/b4a/admobwrapper/AdViewWrapper.java
Star-Dust Expert Licensed User Longtime User Jun 20, 2017 #3 Thanks, but should I do it in Java? My Library is mixed, but mostly in B4A Upvote 0
Star-Dust Expert Licensed User Longtime User Jun 20, 2017 #4 I have to add this permission to the Manifest. B4X: <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> But I would like to avoid that it was the user to do so but loading it to the library would be added Upvote 0
I have to add this permission to the Manifest. B4X: <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> But I would like to avoid that it was the user to do so but loading it to the library would be added
Erel B4X founder Staff member Licensed User Longtime User Jun 20, 2017 #5 Star-Dust said: Thanks, but should I do it in Java? Click to expand... Yes. Upvote 0