Advertisement
sounny

Untitled

Mar 20th, 2019
702
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.37 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3.    package="buckybadger.org.disastermanagement">  <!--be sure to match your projects name here-->
  4.  
  5.     <uses-permission android:name="android.permission.INTERNET" />  <!--permissions that are added for the app to work-->
  6.     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
  7.  
  8.     <application
  9.        android:allowBackup="true"
  10.        android:icon="@mipmap/ic_launcher"
  11.        android:label="@string/app_name"
  12.        android:roundIcon="@mipmap/ic_launcher_round"
  13.        android:supportsRtl="true"
  14.        android:theme="@style/AppTheme"
  15.         android:usesCleartextTraffic="true">
  16.  
  17.         <meta-data
  18.            android:name="com.google.android.geo.API_KEY"
  19.            android:value="API-KEY" />    <!--this is where your API Key goes-->
  20.  
  21.         <meta-data
  22.            android:name="com.google.android.gms.version"
  23.            android:value="@integer/google_play_services_version" />      <!--debatable if needed by why not.-->
  24.  
  25.         <activity android:name=".MainActivity">
  26.             <intent-filter>
  27.                 <action android:name="android.intent.action.MAIN" />
  28.  
  29.                 <category android:name="android.intent.category.LAUNCHER" />
  30.             </intent-filter>
  31.         </activity>
  32.  
  33.     </application>
  34.  
  35. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement