|
|
|
@ -13,13 +13,35 @@
|
|
|
|
|
android:theme="@style/Theme.Geocaching"
|
|
|
|
|
tools:targetApi="31" >
|
|
|
|
|
|
|
|
|
|
<activity android:name=".MainWindow" android:exported="true">
|
|
|
|
|
<!--
|
|
|
|
|
TODO: Before you run your application, you need a Google Maps API key.
|
|
|
|
|
|
|
|
|
|
To get one, follow the directions here:
|
|
|
|
|
|
|
|
|
|
https://developers.google.com/maps/documentation/android-sdk/get-api-key
|
|
|
|
|
|
|
|
|
|
Once you have your API key (it starts with "AIza"), define a new property in your
|
|
|
|
|
project's local.properties file (e.g. MAPS_API_KEY=Aiza...), and replace the
|
|
|
|
|
"YOUR_API_KEY" string in this file with "${MAPS_API_KEY}".
|
|
|
|
|
-->
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="com.google.android.geo.API_KEY"
|
|
|
|
|
android:value="YOUR_API_KEY" />
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".MainWindow"
|
|
|
|
|
android:exported="true" >
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
|
|
</application>
|
|
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
|
|
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
|
</manifest>
|