September 2019
Beginner
512 pages
12h 52m
English
One important step we need to do is to review the permissions requested in the AndroidManifest.xml file. Asking only for the permissions you need is a good and recommended practice, as your app may be analyzed and your publication may be revoked if you request more permissions than required.
In our Favors app, this is what the manifest permissions look like:
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.handson"> <uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.READ_CONTACTS" /> <uses-permission android:name="android.permission.WRITE_CONTACTS"/> <uses-permission android:name="android.permission.CAMERA" ...
Read now
Unlock full access