Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are all those permissions needed by PhoneGap on Android?

Looking at phonegap documentation for hello world and there are a bunch of permissions. About 15 in the Android manifest. Just wondering if all of them are required?

See http://phonegap.com/start/#android

like image 971
Androider Avatar asked Jan 02 '12 04:01

Androider


People also ask

What are permissions in Android Studio?

Specifies a system permission that the user must grant in order for the app to operate correctly. Permissions are granted by the user when the application is installed (on devices running Android 5.1 and lower) or while the app is running (on devices running Android 6.0 and higher).

What is Android state permissions?

What it permits: Reading phone state (READ_PHONE_STATE) lets the app know your phone number, current cellular network information, the status of any ongoing calls and so on. Make calls (CALL_PHONE). Read the list of calls (READ_CALL_LOG).

Which element is used to define permissions Android?

Using "permission" element in android manifest file, we can define a permission. This permission can be added to permission-group. if we name this permission-group as "com.


1 Answers

I've figured out, based on the answer by ghostCoder, that

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

Is the only permission which is needed for a minimal phonegap App to start and run if you don't access the internet or any other special resources.

like image 128
white_gecko Avatar answered Oct 18 '22 20:10

white_gecko