2013-08-08 08:38:47 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2013-11-12 18:28:42 -05:00
|
|
|
<manifest package="fr.gaulupeau.apps.InThePoche"
|
2014-01-06 14:25:36 -05:00
|
|
|
android:versionCode="7"
|
|
|
|
android:versionName="@string/version" xmlns:android="http://schemas.android.com/apk/res/android">
|
2013-11-13 08:56:49 -05:00
|
|
|
<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"/>
|
2013-11-14 18:11:10 -05:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
|
2013-08-08 08:38:47 -04:00
|
|
|
|
|
|
|
|
2013-11-14 08:51:31 -05: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"
|
2013-11-13 08:56:49 -05:00
|
|
|
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>
|
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>
|
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>
|
2013-11-12 18:28:42 -05:00
|
|
|
<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>
|