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">
|
|
|
|
|
2016-06-06 11:46:10 +02:00
|
|
|
<uses-permission android:name="android.permission.CAMERA"/>
|
|
|
|
|
2016-05-19 07:37:28 +02:00
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/AppTheme">
|
|
|
|
<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>
|
2016-06-06 11:46:10 +02:00
|
|
|
<activity android:name="com.google.zxing.client.android.CaptureActivity"
|
|
|
|
android:screenOrientation="landscape"
|
|
|
|
android:configChanges="orientation|keyboardHidden"
|
|
|
|
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
|
|
|
|
android:windowSoftInputMode="stateAlwaysHidden">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
</intent-filter>
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.zxing.client.android.SCAN"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2016-05-19 07:37:28 +02:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|