2008-10-15 14:24:39 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-06-05 09:49:50 -04:00
|
|
|
<!--
|
2012-02-23 11:36:08 -05:00
|
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
|
|
or more contributor license agreements. See the NOTICE file
|
|
|
|
distributed with this work for additional information
|
|
|
|
regarding copyright ownership. The ASF licenses this file
|
|
|
|
to you 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.
|
|
|
|
-->
|
2011-03-15 12:46:05 -07:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:windowSoftInputMode="adjustPan"
|
2013-01-23 12:13:07 -08:00
|
|
|
package="org.apache.cordova" android:versionName="1.0" android:versionCode="1">
|
2009-11-24 15:02:51 -08:00
|
|
|
<supports-screens
|
2011-10-20 16:26:30 -04:00
|
|
|
android:largeScreens="true"
|
|
|
|
android:normalScreens="true"
|
|
|
|
android:smallScreens="true"
|
|
|
|
android:resizeable="true"
|
|
|
|
android:anyDensity="true"
|
|
|
|
/>
|
2011-08-20 13:30:11 -07:00
|
|
|
<!-- android:xlargeScreens="true" screen supported only after Android-9 -->
|
2011-04-18 18:12:01 -07:00
|
|
|
|
2009-10-28 13:43:39 -07:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
|
2008-10-15 17:41:50 -07:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2011-11-09 10:34:49 -06:00
|
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
2009-02-24 22:45:42 +07:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_SMS" />
|
2009-02-26 23:39:17 +07:00
|
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
2011-06-03 01:11:51 +08:00
|
|
|
<uses-permission android:name="android.permission.RECORD_VIDEO"/>
|
2009-03-02 11:56:49 +07:00
|
|
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
2009-11-02 15:43:09 -08:00
|
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
2012-06-05 09:49:50 -04:00
|
|
|
<uses-permission android:name="android.permission.WRITE_CONTACTS" />
|
2009-11-05 11:57:57 -08:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2011-06-03 01:11:51 +08:00
|
|
|
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
|
2011-08-11 15:37:11 -05:00
|
|
|
<uses-permission android:name="android.permission.BROADCAST_STICKY" />
|
2012-06-05 09:49:50 -04:00
|
|
|
|
2011-04-18 18:12:01 -07:00
|
|
|
<uses-feature android:name="android.hardware.camera" />
|
|
|
|
<uses-feature android:name="android.hardware.camera.autofocus" />
|
|
|
|
|
2008-11-17 14:03:21 -08:00
|
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name"
|
2011-10-20 16:26:30 -04:00
|
|
|
android:debuggable="true">
|
2012-06-05 09:49:50 -04:00
|
|
|
<activity android:name="org.apache.cordova.DroidGap" android:label="@string/app_name"
|
2011-07-20 23:17:52 +08:00
|
|
|
android:configChanges="orientation|keyboardHidden">
|
2011-06-29 18:23:20 -05:00
|
|
|
<intent-filter>
|
2013-04-22 16:57:54 -07:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
2011-06-29 18:23:20 -05:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2008-10-15 14:24:39 -07:00
|
|
|
</application>
|
2011-04-18 18:12:01 -07:00
|
|
|
|
2013-07-15 15:22:51 -04:00
|
|
|
<uses-sdk android:minSdkVersion="8" />
|
2012-06-05 09:49:50 -04:00
|
|
|
</manifest>
|