[android-developers] Re: Does the file Manifest.java in Android source codes contain all the list of permissions?

2012-03-20 Thread michael
On Mar 20, 2:20 pm, Dianne Hackborn hack...@android.com wrote: No. Can you provide more detail about this? So, which file contains such information? I cannot find other files that have such info. Thanks alot. On Tue, Mar 20, 2012 at 12:00 PM, michael xuetao@gmail.com wrote: Could I

[android-developers] Re: Does the file Manifest.java in Android source codes contain all the list of permissions?

2012-03-20 Thread michael
the content of the Manifest.java file in Android source code(4.0.3) , for your reference, the following permissions list is complete?: package android; 2 public final class Manifest 3 { 4 public static final class permission 5 { 6 public permission() { throw new RuntimeException(Stub!); } 7

[android-developers] Re: Does the file Manifest.java in Android source codes contain all the list of permissions?

2012-03-20 Thread michael
I know. what I meant is that *whether Android has the file that contains the list of permissions by itself*, disregarding the App side, only the Platform side. Apk cannot change the permissions in the Android platform, though they could define the other permissions by itself. There should be a

Re: [android-developers] Re: Does the file Manifest.java in Android source codes contain all the list of permissions?

2012-03-20 Thread Mark Murphy
https://github.com/android/platform_frameworks_base/blob/master/core/res/AndroidManifest.xml On Tue, Mar 20, 2012 at 7:30 PM, michael xuetao@gmail.com wrote: I know. what I meant is that *whether Android has the file that contains the list of permissions by itself*, disregarding the App