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-08-18 09:30:03 +00:00
|
|
|
package="com.nutomic.syncthingandroid"
|
2015-03-14 14:14:50 +00:00
|
|
|
android:versionCode="56"
|
|
|
|
android:versionName="0.5.19" >
|
2014-05-05 20:30:57 +00:00
|
|
|
|
2014-08-18 09:30:03 +00:00
|
|
|
<uses-sdk
|
|
|
|
android:minSdkVersion="8"
|
2014-10-18 11:58:23 +00:00
|
|
|
android:targetSdkVersion="21" />
|
2014-05-05 20:30:57 +00:00
|
|
|
|
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" />
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
2014-05-05 20:30:57 +00:00
|
|
|
|
2014-08-18 09:30:03 +00:00
|
|
|
<application
|
|
|
|
android:allowBackup="false"
|
|
|
|
android:icon="@drawable/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
2014-10-23 11:00:32 +00:00
|
|
|
android:theme="@style/Theme.AppCompat.Light.DarkActionBar"
|
2014-09-25 10:54:25 +00:00
|
|
|
android:description="@string/app_description">
|
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" />
|
2014-06-27 15:24:23 +00:00
|
|
|
|
2014-08-18 09:30:03 +00:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".activities.WebGuiActivity"
|
|
|
|
android:label="@string/web_gui_title">
|
|
|
|
<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>
|
|
|
|
<activity android:name=".activities.SettingsActivity">
|
|
|
|
<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>
|
2014-05-11 19:39:40 +00:00
|
|
|
|
2014-08-18 09:30:03 +00:00
|
|
|
<service android:name=".syncthing.SyncthingService" />
|
2014-05-05 21:21:55 +00:00
|
|
|
|
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>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
</application>
|
2014-06-27 15:24:23 +00:00
|
|
|
|
|
|
|
</manifest>
|