Created
June 12, 2017 18:39
-
-
Save curly-lala/b5085e932820f1046b0e017605760e66 to your computer and use it in GitHub Desktop.
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="beuth.beuthmap"> | |
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | |
<uses-permission android:name="android.permission.INTERNET" /> | |
<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 you must specify either coarse or fine | |
location permissions for the 'MyLocation' functionality. | |
--> | |
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> | |
<application | |
android:allowBackup="true" | |
android:icon="@mipmap/ic_launcher" | |
android:label="@string/app_name" | |
android:roundIcon="@mipmap/ic_launcher_round" | |
android:supportsRtl="true" | |
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" | |
> | |
<!-- | |
The API key for Google Maps-based APIs is defined as a string resource. | |
(See the file "res/values/google_maps_api.xml"). | |
Note that the API key is linked to the encryption key used to sign the APK. | |
You need a different API key for each encryption key, including the release key that is used to | |
sign the APK for publishing. | |
You can define the keys for the debug and release targets in src/debug/ and src/release/. | |
--> | |
<meta-data | |
android:name="com.google.android.geo.API_KEY" | |
android:value="@string/google_maps_key"/> | |
<activity android:name=".MainActivity"> | |
<intent-filter> | |
<action android:name="android.intent.action.MAIN"/> | |
<category android:name="android.intent.category.LAUNCHER"/> | |
</intent-filter> | |
</activity> | |
<activity | |
android:name=".MapsActivity" | |
android:label="@string/title_activity_maps"> | |
</activity> | |
</application> | |
</manifest> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment