2018-08-10 04:46:39 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-08-29 11:59:10 +00:00
|
|
|
<!-- This file has been modified by whb. -->
|
2018-08-10 04:46:39 +00:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="dk.network42.osmfocus"
|
2018-08-29 11:59:10 +00:00
|
|
|
android:versionCode="4"
|
|
|
|
android:versionName="0.1.1rc2">
|
|
|
|
<uses-sdk
|
2018-08-10 04:46:39 +00:00
|
|
|
android:minSdkVersion="14"
|
2018-08-29 11:59:10 +00:00
|
|
|
android:targetSdkVersion="28" />
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2018-08-10 04:46:39 +00:00
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
2018-08-29 11:59:10 +00:00
|
|
|
android:hardwareAccelerated="false"
|
2018-08-10 04:46:39 +00:00
|
|
|
android:icon="@drawable/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
2018-08-29 11:59:10 +00:00
|
|
|
android:theme="@style/AppTheme">
|
2018-08-10 04:46:39 +00:00
|
|
|
<activity
|
2018-08-29 11:59:10 +00:00
|
|
|
android:name=".MainActivity"
|
|
|
|
android:label="@string/app_name">
|
2018-08-10 04:46:39 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2018-08-29 11:59:10 +00:00
|
|
|
<activity
|
|
|
|
android:name=".SettingsActivity"
|
|
|
|
android:exported="true"
|
|
|
|
android:label="@string/app_name" />
|
|
|
|
<activity
|
|
|
|
android:name=".LicenseActivity"
|
|
|
|
android:exported="true"
|
|
|
|
android:label="@string/app_name" />
|
2018-08-10 04:46:39 +00:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|