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-05 17:04:12 +00:00
|
|
|
android:versionName="0.1"
|
|
|
|
android:debuggable="true" >
|
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"
|
|
|
|
android:icon="@drawable/ic_launcher" >
|
2014-05-05 21:21:55 +00:00
|
|
|
|
2014-05-06 10:03:09 +00:00
|
|
|
<activity
|
|
|
|
android:name=".WebGuiActivity"
|
2014-02-22 17:12:05 +00:00
|
|
|
android:theme="@android:style/Theme.Holo.Light"
|
|
|
|
android:label="@string/app_name" >
|
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
|
|
|
|
|
|
|
<service android:name=".SyncthingService" />
|
|
|
|
|
2014-02-22 17:12:05 +00:00
|
|
|
</application>
|
|
|
|
</manifest>
|