September 2019
Beginner
512 pages
12h 52m
English
As both systems have their own permission management, we need to take this into account when making use of protected resources. In Flutter, we need to go down to the platform level to request the necessary permissions.
As you have seen in our Favors app, we have not worried with permissions until now; the only existing setting regarding this is the link in the AndroidManifest.xml file:
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.handson"> <uses-permission android:name="android.permission.INTERNET"/> ...</manifest>
Thanks to ...
Read now
Unlock full access