/WhereAbout/AndroidManifest.xml
XML | 15 lines | 15 code | 0 blank | 0 comment | 0 complexity | 56b6552bc1c14699d817933008eaf704 MD5 | raw file
1<?xml version="1.0" encoding="utf-8"?> 2<manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 package="com.google.marvin.whereabout"> 4 <application android:icon="@drawable/icon" android:label="@string/app_name"> 5 <activity android:name=".WhereAbout" android:label="@string/app_name"> 6 <intent-filter> 7 <action android:name="android.intent.action.MAIN" /> 8 <category android:name="android.intent.category.LAUNCHER" /> 9 </intent-filter> 10 </activity> 11 </application> 12 <uses-permission android:name="android.permission.INTERNET" /> 13 <uses-permission xmlns:android="http://schemas.android.com/apk/res/android" 14 android:name="android.permission.ACCESS_FINE_LOCATION" /> 15</manifest>