单项选择题

布雷特创建了一个Android应用程序,强制执行自己的许可。布雷特希望将权限名称指定为“MONITOR_APP”,这是一个低风险权限,对系统和用户其他应用的风险最小。布雷特想用这个名字来表示可以显示给最终用户的“My App Monitor”的权限。下面哪个标记正确使用了布雷特的manifest文件中的标签来完成他的任务?()

A.<permission android:name=”com.sampledemo.myactivity.MONITOR_APP”android:protectionLevel=”normal”android:label=”My App Monitor”android:description=”Allows the application to monitor itself”></permission>
B.<permission android:name=”com.sampledemo.myactivity.MONITOR_APP”android:protectionLevel=”normal”android:description=”Allows the application to monitor itself”></permission>
C.<permission android:name=”com.sampledemo.myactivity.MONITOR_APP”android:protectionLevel=“dangerous”android:label=”My App Monitor”android:description=”Allows the application to monitor itself”></permission>
D.<permission android:name=”com.sampledemo.myactivity.MONITOR_APP”android:protectionLevel=”normal”android:label=”MONITOR_APP”android:description=”Allows the application to monitor itself”></permission>