android-app/AndroidManifest.xml

30 lines
1.7 KiB
XML
Raw Permalink Normal View History

2013-08-08 08:38:47 -04:00
<?xml version="1.0" encoding="utf-8"?>
<manifest package="fr.gaulupeau.apps.InThePoche"
2014-01-05 12:57:31 -05:00
android:versionCode="5"
android:versionName="1.5.2" xmlns:android="http://schemas.android.com/apk/res/android">
<uses-sdk android:minSdkVersion="8"
2013-10-17 17:00:23 -04:00
android:targetSdkVersion="8" />
2013-11-11 17:07:22 -05:00
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
2013-08-08 08:38:47 -04:00
<application android:icon="@drawable/icon" android:label="@string/app_name" >
2013-08-08 08:38:47 -04:00
<activity android:name="fr.gaulupeau.apps.Poche.Poche"
android:label="@string/app_name" android:theme="@android:style/Theme.Light.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>
<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>
2013-11-11 17:07:22 -05:00
<activity android:name="fr.gaulupeau.apps.Poche.ReadArticle" android:label="@string/app_name" android:theme="@android:style/Theme.Light"></activity>
<activity android:name="fr.gaulupeau.apps.Poche.ListArticles" android:label="@string/app_name" android:theme="@android:style/Theme.Light"></activity>
2013-11-13 18:14:27 -05:00
<activity android:name="fr.gaulupeau.apps.Poche.Settings" android:label="@string/app_name" android:theme="@android:style/Theme.Light"></activity>
2013-08-08 08:38:47 -04:00
</application>
</manifest>