mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-23 12:51:16 +00:00
62 lines
1.9 KiB
XML
62 lines
1.9 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="32"
|
|
android:versionName="0.4.18"
|
|
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" />
|
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
|
|
|
<application
|
|
android:allowBackup="false"
|
|
android:icon="@drawable/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/AppTheme" >
|
|
<activity
|
|
android:name=".gui.MainActivity"
|
|
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=".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"
|
|
android:label="@string/settings_title" >
|
|
<meta-data
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
android:value=".gui.MainActivity" />
|
|
</activity>
|
|
|
|
<service android:name=".syncthing.SyncthingService" />
|
|
|
|
<activity
|
|
android:name=".gui.RepoSettingsActivity" />
|
|
<activity
|
|
android:name=".gui.NodeSettingsActivity" />
|
|
<activity
|
|
android:name=".gui.FolderPickerActivity"
|
|
android:label="@string/folder_picker_title" >
|
|
<meta-data
|
|
android:name="android.support.UI_OPTIONS"
|
|
android:value="splitActionBarWhenNarrow" />
|
|
</activity>
|
|
</application>
|
|
|
|
</manifest>
|