Skip to content
132 changes: 74 additions & 58 deletions SimuHandset/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,58 +1,74 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright 2012 - 2013 Benjamin Weiss
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="simu.app.handset"
android:versionCode="11"
android:versionName="1.8.1" >

<uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="17" />



<uses-feature
android:name="android.hardware.touchscreen"
android:required="false"/>


<application
android:name="MyApplication"
android:allowBackup="true"
android:icon="@drawable/laucher"
android:label="@string/app_name" >
<activity
android:name="simu.app.handset.CroutonDemo"
android:label="@string/app_name"
android:theme="@style/Theme.Sherlock.Light" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="simu.app.handset.SpeedActivity"></activity>
</application>

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />

</manifest>
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright 2012 - 2013 Benjamin Weiss
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="simu.app.handset"
android:versionCode="11"
android:versionName="1.8.1" >

<uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="17" />

<uses-feature
android:name="android.hardware.touchscreen"
android:required="false" />

<application
android:name="MyApplication"
android:allowBackup="true"
android:icon="@drawable/laucher"
android:label="@string/app_name" >
<activity
android:name="simu.app.handset.Login"
android:label="@string/app_name"
android:theme="@style/Sherlock.__Theme.Light" >

<!-- android:theme="@style/android:Theme.Light" -->

<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="simu.app.handset.SpeedActivity" >
</activity>
<activity android:name="simu.app.handset.CroutonFragmentConfrim" >
</activity>
<activity android:name="simu.app.handset.VerifyRFID" >
</activity>
<activity
android:name="simu.app.handset.VerifyRFIDResult"
android:label="@string/app_name"
android:theme="@style/Sherlock.__Theme.Light" >
</activity>
<activity
android:name="simu.app.handset.CroutonDemo"
android:label="@string/app_name"
android:theme="@style/Theme.Sherlock.Light" >
>
</activity>
</application>

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />

</manifest>
Expand Down
Loading