mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-24 13:21:16 +00:00
41 lines
1.2 KiB
XML
41 lines
1.2 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="com.nutomic.syncthingandroid"
|
|
android:versionCode="10"
|
|
android:versionName="0.3.7"
|
|
tools:ignore="GradleOverrides" >
|
|
|
|
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="19" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<application
|
|
android:allowBackup="false"
|
|
android:label="@string/app_name"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:theme="@style/Theme.AppCompat" >
|
|
|
|
<activity
|
|
android:name=".WebGuiActivity"
|
|
android:label="@string/app_name"
|
|
android:launchMode="singleTop" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
<activity
|
|
android:name=".SettingsActivity"
|
|
android:label="@string/settings_title" >
|
|
<meta-data
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
android:value=".WebGuiActivity" />
|
|
</activity>
|
|
|
|
<service android:name=".syncthing.SyncthingService" />
|
|
|
|
</application>
|
|
</manifest>
|