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"
|
|
|
|
android:label="@string/title_activity_main">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|