2014-02-22 17:12:05 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="com.nutomic.syncthingandroid"
|
|
|
|
android:versionCode="1"
|
2014-05-10 11:16:47 +00:00
|
|
|
android:versionName="0.1.0" >
|
2014-05-05 20:30:57 +00:00
|
|
|
|
2014-03-10 21:29:30 +00:00
|
|
|
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="19" />
|
2014-05-05 20:30:57 +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-05-05 20:30:57 +00:00
|
|
|
|
2014-05-06 07:26:27 +00:00
|
|
|
<application
|
|
|
|
android:label="@string/app_name"
|
2014-05-11 19:41:25 +00:00
|
|
|
android:icon="@drawable/ic_launcher"
|
|
|
|
android:theme="@android:style/Theme.Holo" >
|
2014-05-05 21:21:55 +00:00
|
|
|
|
2014-05-06 10:03:09 +00:00
|
|
|
<activity
|
|
|
|
android:name=".WebGuiActivity"
|
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" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2014-02-22 17:12:05 +00:00
|
|
|
</activity>
|
2014-05-05 21:21:55 +00:00
|
|
|
|
2014-05-11 19:39:40 +00:00
|
|
|
<activity
|
|
|
|
android:name=".SettingsActivity"
|
|
|
|
android:label="@string/settings_title" />
|
|
|
|
|
2014-05-14 09:29:31 +00:00
|
|
|
<service android:name=".service.SyncthingService" />
|
2014-05-05 21:21:55 +00:00
|
|
|
|
2014-02-22 17:12:05 +00:00
|
|
|
</application>
|
|
|
|
</manifest>
|