Advertisement
Guest User

Untitled

a guest
Nov 17th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.91 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:tools="http://schemas.android.com/tools"
  4.    package="com.here.android.example.advanced.navigation">
  5.  
  6.     <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
  7.     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
  8.     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  9.     <uses-permission android:name="android.permission.INTERNET" />
  10.     <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
  11.  
  12.     <application
  13.        android:allowBackup="true"
  14.        android:icon="@mipmap/ic_launcher"
  15.        android:label="Advanced Guidance"
  16.        android:supportsRtl="true"
  17.        android:theme="@style/AppTheme"
  18.        tools:ignore="GoogleAppIndexingWarning">
  19.         <activity android:name=".MainActivity">
  20.             <intent-filter>
  21.                 <action android:name="android.intent.action.MAIN" />
  22.  
  23.                 <category android:name="android.intent.category.LAUNCHER" />
  24.             </intent-filter>
  25.         </activity>
  26.  
  27.         <!--Developers should put application credentials here.To obtain them, please register the application
  28.         at https://developer.here.com/develop/mobile-sdks-->
  29.         <meta-data
  30.            android:name="com.here.android.maps.appid"
  31.            android:value="qWbMGyzcFY0dKqKWlqc1" />
  32.         <meta-data
  33.            android:name="com.here.android.maps.apptoken"
  34.            android:value="xL-THRAwYLvIRivIYoBQOg" />
  35.         <meta-data
  36.            android:name="com.here.android.maps.license.key"
  37.            android:value="c7/56tfRvIJ+ucFFjB02g2ejKTlpFFRwxsaVq0b431Sxh7LKwufIeOkXBMrrE9EkqtqkxINJI9p5FHTFQt3fiaZo55US4o2kETQt4MVuLatFcpfAxq53KREjJQswxzk7/lG4E23EFUOZEAiLk8Lu9PEn3zHKHPiUYHXeKql6CL2g4ma4POpJKmoVrWhXe5FfsxxAp4C9+OiPQGaLT3gTMFETWwqgPpLKxXFae0njKogsfvB44uDR3XNIpYWEdewlObJVlVgWSBf5Rg7EW7M37JSQREY0hRyN6emuWifVF/rn/kieYwMnWdZq3CYqbJZ4V9d754Co1zkm+CEZAhzbC77bXXv+n1FxkinQbKQf2Wf9trwGg41Q13UeYO94T4ADVsMFP28mDWCzYsfQ/9qI69AjepcioAoiWWCz327AyCRxBw0kPYLlDF8wnQDZVvXi7HkLpS8/zkyNTlFYvqVnd2bghETtJ8S60ksZGifUX4WBbP5ZOcCQutWvown0KmgVKA+a26Q5MMlxtYxu3UGqdAvloZPhXRto0FE6iWug/EiROVd67K4z1smCDW/BoaEGuXvi5XEfELOxlTx/Hr/Fdc+7vORto0gsEsvxCEocKQja3NJfBGc41dxnyUH5UnHyw0+hvSOuq2ZDLTOp1YDpyQfsW6pof1V8qnvjb6BWcIQ=" />
  38.  
  39.          <!--Developers should always provide custom values for each of {YOUR_LABEL_NAME} and {YOUR_INTENT_NAME}.
  40.         Do not reuse HERE SDK defaults.-->
  41.         <meta-data
  42.            android:name="INTENT_NAME"
  43.            android:value="Test" />
  44.         <service
  45.            android:name="com.here.android.mpa.service.MapService"
  46.            android:label="gitteam"
  47.            android:exported="false">
  48.             <intent-filter>
  49.                 <action android:name="Test" />
  50.             </intent-filter>
  51.         </service>
  52.     </application>
  53. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement