Advertisement
Guest User

Untitled

a guest
Apr 5th, 2017
655
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.44 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?><!--
  2.  ~ Copyright (c) 2015-present, Parse, LLC.
  3.  ~ All rights reserved.
  4.  ~
  5.  ~ This source code is licensed under the BSD-style license found in the
  6.  ~ LICENSE file in the root directory of this source tree. An additional grant
  7.  ~ of patent rights can be found in the PATENTS file in the same directory.
  8. -->
  9.  
  10. <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.parse.starter">
  11.  
  12.  
  13. <uses-permission android:name="android.permission.INTERNET" />
  14. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  15. <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
  16.  
  17.  
  18.     <!--
  19.             The API key for Google Maps-based APIs is defined as a string resource.
  20.             (See the file "res/values/google_maps_api.xml").
  21.             Note that the API key is linked to the encryption key used to sign the APK.
  22.             You need a different API key for each encryption key, including the release key that is used to
  23.             sign the APK for publishing.
  24.             You can define the keys for the debug and release targets in src/debug/ and src/release/.
  25.        -->
  26.  
  27.     <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
  28.  
  29.     <application
  30.    android:name=".StarterApplication"
  31.    android:allowBackup="true"
  32.    android:fullBackupContent="true"
  33.    android:icon="@mipmap/ic_launcher"
  34.    android:label="@string/app_name"
  35.    android:theme="@style/AppTheme">
  36.     <meta-data
  37.    />
  38.  
  39.     <activity android:name=".MainActivity" android:label="@string/app_name">
  40.  
  41.         <intent-filter>
  42.             <action android:name="android.intent.action.MAIN" />
  43.  
  44.             <category android:name="android.intent.category.LAUNCHER" />
  45.         </intent-filter>
  46.  
  47.     </activity>
  48.  
  49.     <activity android:name=".Dashboard" />
  50.  
  51.  
  52.     <meta-data android:name="com.google.android.geo.API_KEY"
  53.        android:value="AIzaSyAYNcwdQWnIhR4GBfblAlzpHnzXzZ_vvYY" />
  54.  
  55.  
  56.     <activity android:name=".ReportActivity" android:label="@string/app_name"/>
  57.  
  58.     <activity android:name=".Responderctivity" android:label="@string/app_name" />
  59.  
  60.     <activity android:name=".MessagingActivity" android:label="@string/app_name" />
  61.  
  62.     <activity
  63.  
  64.        android:name="com.parse.starter.ResponderLocationActivity"
  65.        android:label="@string/title_activity_responder_location">
  66.  
  67.     </activity>
  68.  
  69.     </application>
  70.  
  71. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement