December 2018
Beginner to intermediate
328 pages
8h 29m
English
Unlike a desktop environment, this provides an opportunity for the user to know in advance what resources the application is seeking access to. In other words, user permission is a must to access any kind of critical resource on the device. By looking at the requested permission, the user is more aware of the risks involved in installing the application.
As mentioned before, developers have to identify the permissions in a file named AndroidManifest.xml. For example, if the application needs to access the internet, the permission INTERNET is specified using the following code in the AndroidManifest.xml file:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"package="com.example.rohit"> ...
Read now
Unlock full access