1
0
Fork 0
mirror of https://github.com/syncthing/syncthing-android.git synced 2024-11-24 05:11:15 +00:00
syncthing-android/src/main/AndroidManifest.xml

50 lines
1.5 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8" ?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
2014-05-14 15:08:19 +00:00
package="com.nutomic.syncthingandroid"
2014-06-27 15:59:39 +00:00
android:versionCode="13"
android:versionName="0.3.10"
tools:ignore="GradleOverrides" >
2014-03-10 21:29:30 +00:00
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="19" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET" />
2014-05-06 07:26:27 +00:00
<application
android:allowBackup="false"
2014-05-06 07:26:27 +00:00
android:label="@string/app_name"
2014-05-11 19:41:25 +00:00
android:icon="@drawable/ic_launcher"
android:theme="@style/Theme.AppCompat.Light.DarkActionBar" >
2014-05-06 10:03:09 +00:00
<activity
android:name=".gui.MainActivity"
2014-05-06 11:30:40 +00:00
android:label="@string/app_name"
android:launchMode="singleTop" >
2014-05-06 07:26:27 +00:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".gui.WebGuiActivity"
android:label="@string/web_gui_title" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".gui.MainActivity" />
</activity>
<activity
android:name=".gui.SettingsActivity"
2014-05-14 15:08:19 +00:00
android:label="@string/settings_title" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".gui.MainActivity" />
2014-05-14 15:08:19 +00:00
</activity>
<service android:name=".syncthing.SyncthingService" />
2014-05-14 15:08:19 +00:00
</application>
</manifest>