Hi I am learning android security so there I went through a topic where someone mentioned a custom permission on activity as like below :-
<permission android:name=”com.testpaccourierkage.mypermission”
android:label=”my_permission”
android:protectionLevel=”dangerous”
android:description=”@string/detonate_description” />
<application>
<activity
android:permission=”com.testpackage.mypermission”
android:name=”.PermissionTestClientActivity”
android:label=”@string/app_name”/>
</application>
I could not understand the use of this. How and where we can use this concept.
Thanks in advance.