Advertisement
Kirizhik

Untitled

Jun 30th, 2018
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 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="com.clBrain.mmmmapio">
  4.  
  5. <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
  6.  
  7. <application
  8. android:allowBackup="true"
  9. android:icon="@mipmap/ic_launcher"
  10. android:label="@string/app_name"
  11. android:supportsRtl="true"
  12. android:theme="@style/AppTheme">
  13. <meta-data
  14. android:name="com.google.android.gms.version"
  15. android:value="@integer/google_play_services_version" />
  16. <!-- The API key for Google Maps-based APIs. -->
  17. <meta-data
  18. android:name="com.google.android.geo.API_KEY"
  19. android:value="AIzaSyBvdwaYTcnVera84c-u1AmOJ18YxqOp8AE" />
  20.  
  21. <activity
  22. android:name=".MapsCurrentPlaceActivity"
  23. android:label="@string/title_activity_maps">
  24. <intent-filter>
  25. <action android:name="android.intent.action.MAIN" />
  26.  
  27. <category android:name="android.intent.category.LAUNCHER" />
  28. </intent-filter>
  29. </activity>
  30. <activity android:name=".MidActivity"></activity>
  31. </application>
  32.  
  33. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement