2014-06-27 15:24:23 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-02-22 17:12:05 +00:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-04-26 20:54:27 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2015-06-28 15:43:43 +00:00
|
|
|
package="com.nutomic.syncthingandroid">
|
2014-05-05 20:30:57 +00:00
|
|
|
|
2015-05-30 09:01:38 +00:00
|
|
|
<uses-feature android:name="android.software.leanback" android:required="false" />
|
|
|
|
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
|
|
|
|
|
2014-08-18 09:30:03 +00:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2015-11-30 20:10:42 +00:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
2014-08-18 09:30:03 +00:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
2016-02-18 22:23:20 +00:00
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
2014-05-05 20:30:57 +00:00
|
|
|
|
2014-08-18 09:30:03 +00:00
|
|
|
<application
|
|
|
|
android:allowBackup="false"
|
2015-12-03 15:33:33 +00:00
|
|
|
android:fullBackupContent="false"
|
2014-08-18 09:30:03 +00:00
|
|
|
android:icon="@drawable/ic_launcher"
|
2015-05-30 09:01:38 +00:00
|
|
|
android:banner="@drawable/banner"
|
2014-08-18 09:30:03 +00:00
|
|
|
android:label="@string/app_name"
|
2015-08-02 14:11:08 +00:00
|
|
|
android:theme="@style/Theme.Syncthing"
|
2015-06-19 18:15:35 +00:00
|
|
|
android:description="@string/app_description"
|
2015-06-23 19:36:58 +00:00
|
|
|
android:supportsRtl="true"
|
|
|
|
android:installLocation="internalOnly">
|
2014-08-18 09:30:03 +00:00
|
|
|
<activity
|
|
|
|
android:name=".activities.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>
|
2015-05-30 09:01:38 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
|
|
|
|
</intent-filter>
|
2014-08-18 09:30:03 +00:00
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activities.WebGuiActivity"
|
2015-03-25 08:22:57 +00:00
|
|
|
android:label="@string/web_gui_title"
|
|
|
|
android:parentActivityName=".activities.MainActivity">
|
2014-08-18 09:30:03 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2014-09-28 18:10:46 +00:00
|
|
|
android:value=".activities.MainActivity" />
|
2014-08-18 09:30:03 +00:00
|
|
|
</activity>
|
2015-03-25 08:22:57 +00:00
|
|
|
<activity android:name=".activities.SettingsActivity"
|
|
|
|
android:label="@string/settings_title"
|
|
|
|
android:parentActivityName=".activities.MainActivity">
|
2014-08-18 09:30:03 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2014-09-28 18:10:46 +00:00
|
|
|
android:value=".activities.MainActivity" />
|
2014-08-18 09:30:03 +00:00
|
|
|
</activity>
|
2015-03-28 13:28:23 +00:00
|
|
|
<activity
|
|
|
|
android:name=".activities.LogActivity"
|
|
|
|
android:label="@string/log_title"
|
|
|
|
android:parentActivityName=".activities.SettingsActivity">
|
2015-04-12 20:55:06 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name=".activities.LogActivity" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
2015-03-28 13:28:23 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".activities.SettingsActivity" />
|
|
|
|
</activity>
|
2014-08-18 09:30:03 +00:00
|
|
|
<activity
|
|
|
|
android:name=".activities.FolderPickerActivity"
|
|
|
|
android:label="@string/folder_picker_title">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.UI_OPTIONS"
|
|
|
|
android:value="splitActionBarWhenNarrow" />
|
|
|
|
</activity>
|
2015-07-07 00:10:12 +00:00
|
|
|
<activity android:name=".activities.RestartActivity"
|
2015-09-21 22:49:11 +00:00
|
|
|
android:theme="@style/Theme.Syncthing.Translucent"
|
|
|
|
android:launchMode="singleTop"/>
|
2015-07-07 00:10:12 +00:00
|
|
|
|
|
|
|
<service android:name=".syncthing.SyncthingService" />
|
2014-08-18 09:30:03 +00:00
|
|
|
|
|
|
|
<receiver android:name=".syncthing.NetworkReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
<receiver android:name=".syncthing.BatteryReceiver">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.ACTION_POWER_CONNECTED" />
|
|
|
|
<action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2014-08-01 21:21:37 +00:00
|
|
|
<receiver android:name=".syncthing.BootReceiver">
|
2014-08-18 09:30:03 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2016-04-26 20:54:27 +00:00
|
|
|
<receiver android:name=".syncthing.AppConfigReceiver"
|
|
|
|
tools:ignore="ExportedReceiver">
|
2016-03-25 21:13:51 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.nutomic.syncthingandroid.action.START" />
|
|
|
|
<action android:name="com.nutomic.syncthingandroid.action.STOP" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
2014-08-18 09:30:03 +00:00
|
|
|
</application>
|
2014-06-27 15:24:23 +00:00
|
|
|
|
|
|
|
</manifest>
|