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"
|
2014-06-27 15:24:23 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2014-05-14 15:08:19 +00:00
|
|
|
package="com.nutomic.syncthingandroid"
|
2014-09-24 23:15:11 +00:00
|
|
|
android:versionCode="33"
|
|
|
|
android:versionName="0.4.19"
|
2014-05-18 23:21:13 +00:00
|
|
|
tools:ignore="GradleOverrides" >
|
2014-05-05 20:30:57 +00:00
|
|
|
|
2014-06-27 15:24:23 +00:00
|
|
|
<uses-sdk
|
|
|
|
android:minSdkVersion="8"
|
|
|
|
android:targetSdkVersion="19" />
|
2014-05-05 20:30:57 +00:00
|
|
|
|
2014-06-27 15:24:23 +00:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2014-05-05 20:39:55 +00:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2014-07-05 17:14:54 +00:00
|
|
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
|
2014-08-01 21:09:00 +00:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
2014-05-05 20:30:57 +00:00
|
|
|
|
2014-05-06 07:26:27 +00:00
|
|
|
<application
|
2014-05-14 13:15:51 +00:00
|
|
|
android:allowBackup="false"
|
2014-05-11 19:41:25 +00:00
|
|
|
android:icon="@drawable/ic_launcher"
|
2014-06-27 15:24:23 +00:00
|
|
|
android:label="@string/app_name"
|
2014-07-13 14:15:35 +00:00
|
|
|
android:theme="@style/AppTheme" >
|
2014-05-06 10:03:09 +00:00
|
|
|
<activity
|
2014-06-03 15:42:17 +00:00
|
|
|
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" />
|
2014-06-27 15:24:23 +00:00
|
|
|
|
2014-05-06 07:26:27 +00:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2014-02-22 17:12:05 +00:00
|
|
|
</activity>
|
2014-06-03 15:42:17 +00:00
|
|
|
<activity
|
|
|
|
android:name=".gui.WebGuiActivity"
|
|
|
|
android:label="@string/web_gui_title" >
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value=".gui.MainActivity" />
|
|
|
|
</activity>
|
2014-05-11 19:39:40 +00:00
|
|
|
<activity
|
2014-05-31 16:44:32 +00:00
|
|
|
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"
|
2014-06-03 15:42:17 +00:00
|
|
|
android:value=".gui.MainActivity" />
|
2014-05-14 15:08:19 +00:00
|
|
|
</activity>
|
2014-05-11 19:39:40 +00:00
|
|
|
|
2014-05-26 11:17:35 +00:00
|
|
|
<service android:name=".syncthing.SyncthingService" />
|
2014-05-05 21:21:55 +00:00
|
|
|
|
2014-06-14 00:55:55 +00:00
|
|
|
<activity
|
2014-07-04 21:03:58 +00:00
|
|
|
android:name=".gui.RepoSettingsActivity" />
|
2014-06-14 00:55:55 +00:00
|
|
|
<activity
|
2014-07-04 21:03:58 +00:00
|
|
|
android:name=".gui.NodeSettingsActivity" />
|
2014-06-27 15:24:23 +00:00
|
|
|
<activity
|
|
|
|
android:name=".gui.FolderPickerActivity"
|
2014-06-30 00:20:32 +00:00
|
|
|
android:label="@string/folder_picker_title" >
|
2014-06-27 15:24:23 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.UI_OPTIONS"
|
|
|
|
android:value="splitActionBarWhenNarrow" />
|
|
|
|
</activity>
|
2014-08-01 21:09:00 +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-05-14 15:08:19 +00:00
|
|
|
</application>
|
2014-06-27 15:24:23 +00:00
|
|
|
|
|
|
|
</manifest>
|