mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-22 12:21:15 +00:00
18 lines
674 B
XML
18 lines
674 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.nutomic.syncthingandroid"
|
|
android:versionCode="1"
|
|
android:versionName="0.1" >
|
|
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="19" />
|
|
<application android:label="@string/app_name" >
|
|
<activity
|
|
android:name="MainActivity"
|
|
android:theme="@android:style/Theme.Holo.Light"
|
|
android:label="@string/app_name" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
</application>
|
|
</manifest>
|