Created
June 19, 2015 17:32
-
-
Save cbedoy/a73b721f120a2df4cae7 to your computer and use it in GitHub Desktop.
Android Manifest with support maps
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="utf-8"?> | |
| <manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
| package="cbedoy.gymap" > | |
| <uses-permission android:name="android.permission.INTERNET" /> | |
| <uses-permission android:name="android.permission.GET_ACCOUNTS"/> | |
| <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | |
| <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | |
| <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> | |
| <uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" /> | |
| <!-- | |
| The ACCESS_COARSE/FINE_LOCATION permissions are not required to use | |
| Google Maps Android API v2, but are recommended. | |
| --> | |
| <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> | |
| <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> | |
| <application | |
| android:name=".artifacts.ApplicationLoader" | |
| android:allowBackup="true" | |
| android:icon="@mipmap/ic_launcher" | |
| android:label="@string/app_name" | |
| android:theme="@style/AppTheme" > | |
| <activity | |
| android:name=".MasterViewController" | |
| android:label="@string/app_name" > | |
| </activity> | |
| <meta-data | |
| android:name="com.google.android.gms.version" | |
| android:value="@integer/google_play_services_version" /> | |
| <meta-data | |
| android:name="com.google.android.maps.v2.API_KEY" | |
| android:value="@string/google_maps_key" /> | |
| <activity | |
| android:name=".GoogleMapViewController" | |
| android:label="@string/title_activity_maps" > | |
| </activity> | |
| <activity android:name=".SplashViewController"> | |
| <intent-filter> | |
| <action android:name="android.intent.action.MAIN" /> | |
| <category android:name="android.intent.category.LAUNCHER" /> | |
| </intent-filter> | |
| </activity> | |
| </application> | |
| </manifest> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment