-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added preference test and getinventory debug.
- Loading branch information
1 parent
8acfdc7
commit 43a8036
Showing
11 changed files
with
463 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,78 +1,81 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest package="cz.kofron.foodinventory.client" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="cz.kofron.foodinventory.client" > | ||
|
||
<uses-permission android:name="android.permission.CAMERA"/> | ||
<uses-permission android:name="android.permission.GET_ACCOUNTS"/> | ||
<uses-permission android:name="android.permission.INTERNET"/> | ||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> | ||
<uses-permission android:name="com.android.alarm.permission.SET_ALARM"/> | ||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/> | ||
<uses-permission android:name="android.permission.CAMERA" /> | ||
<uses-permission android:name="android.permission.GET_ACCOUNTS" /> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> | ||
<uses-permission android:name="com.android.alarm.permission.SET_ALARM" /> | ||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> | ||
|
||
<uses-feature | ||
android:name="android.hardware.camera" | ||
android:required="false"/> | ||
android:required="false" /> | ||
<uses-feature | ||
android:name="android.hardware.camera,back" | ||
android:required="false"/> | ||
android:required="false" /> | ||
<uses-feature | ||
android:name="android.hardware.camera,front" | ||
android:required="false"/> | ||
<uses-feature android:name="android.hardware.camera.autofocus"/> | ||
android:required="false" /> | ||
<uses-feature android:name="android.hardware.camera.autofocus" /> | ||
|
||
<application | ||
android:allowBackup="true" | ||
android:icon="@drawable/ic_launcher" | ||
android:label="@string/app_name" | ||
android:theme="@style/AppTheme"> | ||
|
||
|
||
android:theme="@style/AppTheme" > | ||
<activity | ||
android:name=".activity.MainActivity" | ||
android:name="cz.kofron.foodinventory.client.activity.MainActivity" | ||
android:configChanges="orientation|keyboardHidden" | ||
android:label="@string/app_name" | ||
android:screenOrientation="portrait" | ||
android:configChanges="orientation|keyboardHidden"> | ||
android:screenOrientation="portrait" > | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN"/> | ||
<action android:name="android.intent.action.MAIN" /> | ||
|
||
<category android:name="android.intent.category.LAUNCHER"/> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name=".activity.FoodDetailActivity" | ||
android:name="cz.kofron.foodinventory.client.activity.FoodDetailActivity" | ||
android:configChanges="orientation|keyboardHidden" | ||
android:label="@string/app_name" | ||
android:screenOrientation="portrait" | ||
android:configChanges="orientation|keyboardHidden"> | ||
android:screenOrientation="portrait" > | ||
</activity> | ||
<activity | ||
android:name=".activity.FoodEditActivity" | ||
android:name="cz.kofron.foodinventory.client.activity.FoodEditActivity" | ||
android:configChanges="orientation|keyboardHidden" | ||
android:label="@string/app_name" | ||
android:windowSoftInputMode="stateHidden" | ||
android:screenOrientation="portrait" | ||
android:configChanges="orientation|keyboardHidden"> | ||
android:windowSoftInputMode="stateHidden" > | ||
</activity> | ||
<activity | ||
android:name=".activity.FoodListActivity" | ||
android:name="cz.kofron.foodinventory.client.activity.FoodListActivity" | ||
android:configChanges="orientation|keyboardHidden" | ||
android:label="@string/app_name" | ||
android:windowSoftInputMode="stateHidden" | ||
android:screenOrientation="portrait" | ||
android:configChanges="orientation|keyboardHidden"> | ||
android:windowSoftInputMode="stateHidden" > | ||
</activity> | ||
<activity | ||
android:name=".activity.GtinCaptureActivity" | ||
android:name="cz.kofron.foodinventory.client.activity.GtinCaptureActivity" | ||
android:configChanges="orientation|keyboardHidden" | ||
android:label="@string/app_name" | ||
android:windowSoftInputMode="stateHidden" | ||
android:screenOrientation="portrait" | ||
android:configChanges="orientation|keyboardHidden" | ||
> | ||
android:windowSoftInputMode="stateHidden" > | ||
</activity> | ||
<receiver android:name=".background.BootReceiver" > | ||
|
||
<receiver android:name="cz.kofron.foodinventory.client.background.BootReceiver" > | ||
<intent-filter> | ||
<action android:name="android.intent.action.BOOT_COMPLETED" /> | ||
</intent-filter> | ||
</receiver> | ||
<receiver android:name=".background.AlarmReceiver" > | ||
<receiver android:name="cz.kofron.foodinventory.client.background.AlarmReceiver" > | ||
</receiver> | ||
|
||
<activity | ||
android:name="cz.kofron.foodinventory.client.activity.SettingsActivity" | ||
android:label="@string/title_activity_settings" > | ||
</activity> | ||
</application> | ||
|
||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.