2016-05-19 07:37:28 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="net.foucry.pilldroid">
|
|
|
|
|
2020-05-16 19:48:23 +02:00
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
|
|
|
|
2016-05-19 07:37:28 +02:00
|
|
|
<application
|
2020-05-16 19:48:23 +02:00
|
|
|
android:hardwareAccelerated="true"
|
2016-05-19 07:37:28 +02:00
|
|
|
android:label="@string/app_name"
|
2020-07-23 09:37:58 +02:00
|
|
|
android:theme="@style/AppTheme"
|
|
|
|
android:roundIcon="@drawable/ic_launcher"
|
|
|
|
android:supportsRtl="true">
|
2020-07-23 09:14:20 +02:00
|
|
|
|
2020-05-23 19:11:33 +02:00
|
|
|
<!-- <activity
|
2020-05-16 19:48:23 +02:00
|
|
|
android:name=".scanActivity"
|
|
|
|
android:configChanges="orientation|keyboardHidden|screenSize"
|
|
|
|
android:label="@string/title_activity_scan"
|
2020-05-23 19:11:33 +02:00
|
|
|
android:theme="@style/FullscreenTheme"></activity>-->
|
2016-05-19 07:37:28 +02:00
|
|
|
<activity
|
|
|
|
android:name=".MedicamentListActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity
|
|
|
|
android:name=".MedicamentDetailActivity"
|
|
|
|
android:label="@string/title_medicament_detail"
|
|
|
|
android:parentActivityName=".MedicamentListActivity"
|
|
|
|
android:theme="@style/AppTheme.NoActionBar">
|
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
|
|
|
android:value="net.foucry.pilldroid.MedicamentListActivity" />
|
|
|
|
</activity>
|
2020-05-21 16:36:30 +02:00
|
|
|
<!-- <activity
|
2020-05-04 21:51:15 +02:00
|
|
|
android:name="com.google.zxing.client.android.CaptureActivity"
|
2016-06-06 11:46:10 +02:00
|
|
|
android:configChanges="orientation|keyboardHidden"
|
2020-05-04 21:51:15 +02:00
|
|
|
android:screenOrientation="landscape"
|
2016-06-06 11:46:10 +02:00
|
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
|
|
|
android:windowSoftInputMode="stateAlwaysHidden">
|
|
|
|
<intent-filter>
|
2020-05-16 19:48:23 +02:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2016-06-06 11:46:10 +02:00
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
2020-05-16 19:48:23 +02:00
|
|
|
<action android:name="com.google.zxing.client.android.SCAN" />
|
|
|
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2016-06-06 11:46:10 +02:00
|
|
|
</intent-filter>
|
2020-05-21 16:36:30 +02:00
|
|
|
</activity>-->
|
2020-05-16 19:48:23 +02:00
|
|
|
<activity
|
2020-06-12 11:08:46 +02:00
|
|
|
android:name="About"
|
2016-06-19 01:48:41 +02:00
|
|
|
android:label="À propos de PillDroid"
|
2016-06-14 23:36:07 +02:00
|
|
|
android:parentActivityName=".MedicamentListActivity"
|
2020-06-12 11:08:46 +02:00
|
|
|
android:theme="@style/AppTheme" />
|
2020-05-23 19:11:33 +02:00
|
|
|
<activity android:name=".CustomScannerActivity" />
|
2020-05-16 19:48:23 +02:00
|
|
|
|
2017-12-11 15:26:21 +01:00
|
|
|
<receiver android:name=".NotificationPublisher" />
|
2020-05-16 19:48:23 +02:00
|
|
|
|
|
|
|
<service
|
|
|
|
android:name=".PillDroidJobService"
|
|
|
|
android:permission="android.permission.BIND_JOB_SERVICE" />
|
2016-05-19 07:37:28 +02:00
|
|
|
</application>
|
2020-07-23 09:14:20 +02:00
|
|
|
</manifest>
|