2013-08-08 08:38:47 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-08-19 10:46:09 -04:00
|
|
|
<manifest
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="fr.gaulupeau.apps.InThePoche" >
|
|
|
|
|
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
|
|
|
|
2014-08-19 10:46:09 -04:00
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@drawable/icon"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/app_theme" >
|
|
|
|
<activity
|
|
|
|
android:name="fr.gaulupeau.apps.Poche.Poche"
|
|
|
|
android:theme="@style/mainActivity_theme" >
|
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>
|
2014-08-19 10:46:09 -04: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>
|
2014-08-19 10:46:09 -04:00
|
|
|
<activity android:name="fr.gaulupeau.apps.Poche.ReadArticle" />
|
|
|
|
<activity android:name="fr.gaulupeau.apps.Poche.ListArticles" />
|
|
|
|
<activity android:name="fr.gaulupeau.apps.Poche.Settings" />
|
2013-11-13 18:14:27 -05:00
|
|
|
|
2013-08-08 08:38:47 -04:00
|
|
|
</application>
|
|
|
|
</manifest>
|