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"
|
2013-10-28 10:03:26 -04:00
|
|
|
package="fr.gaulupeau.apps.InThePoche"
|
2013-08-08 08:38:47 -04:00
|
|
|
android:versionCode="1"
|
|
|
|
android:versionName="1.0">
|
|
|
|
<uses-sdk android:minSdkVersion="4"
|
|
|
|
android:targetSdkVersion="11" />
|
|
|
|
|
|
|
|
|
|
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name">
|
|
|
|
<activity android:name="fr.gaulupeau.apps.Poche.Poche"
|
2013-10-28 10:03:26 -04:00
|
|
|
android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar">
|
2013-08-08 08:38:47 -04:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
2013-11-05 11:43:41 -05:00
|
|
|
<intent-filter android:label="@string/label_name">
|
2013-08-08 08:38:47 -04:00
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="text/plain" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
</application>
|
|
|
|
</manifest>
|