android:permission in <application>
问题 I have noticed that Android framework allows android:permission in <application> . For example, consider the following manifest file. <application android:permission="android.permission.INTERNET"> ... </application> In the above example, to launch my application the launcher app (e.g., home screen) needs INTERNET permission. In reality, no one permission protect their application (I may be wrong here). But, I really don't understand the practical use-case of it. When will we use permissions