2016-06-15 21:05:12 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="net.osmand.core.samples.android.sample1" >
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
2016-06-16 15:34:06 +02:00
|
|
|
android:name=".SampleApplication"
|
2016-06-15 21:05:12 +02:00
|
|
|
android:icon="@mipmap/sample_app"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/AppTheme">
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
2016-07-01 09:14:49 +02:00
|
|
|
android:label="@string/title_activity_main"
|
2016-07-01 09:24:25 +02:00
|
|
|
android:configChanges="locale|fontScale|keyboard|keyboardHidden|mcc|mnc|navigation|orientation|screenLayout|screenSize|smallestScreenSize|touchscreen|uiMode">
|
2016-06-15 21:05:12 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|