android-app/AndroidManifest.xml

26 lines
1010 B
XML
Raw Permalink Normal View History

2013-08-08 08:38:47 -04:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="fr.gaulupeau.apps.Poche"
2013-10-17 17:00:23 -04:00
android:versionCode="2"
android:versionName="1.0.1">
2013-08-08 08:38:47 -04:00
<uses-sdk android:minSdkVersion="4"
2013-10-17 17:00:23 -04:00
android:targetSdkVersion="8" />
2013-08-08 08:38:47 -04:00
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name="fr.gaulupeau.apps.Poche.Poche"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
</activity>
</application>
</manifest>