2008-10-16 05:24:39 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-06-05 21:49:50 +08:00
|
|
|
<!--
|
2012-02-24 00:36:08 +08: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-16 03:46:05 +08:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:windowSoftInputMode="adjustPan"
|
2013-01-24 04:13:07 +08:00
|
|
|
package="org.apache.cordova" android:versionName="1.0" android:versionCode="1">
|
2009-11-25 07:02:51 +08:00
|
|
|
<supports-screens
|
2011-10-21 04:26:30 +08:00
|
|
|
android:largeScreens="true"
|
|
|
|
android:normalScreens="true"
|
|
|
|
android:smallScreens="true"
|
|
|
|
android:resizeable="true"
|
|
|
|
android:anyDensity="true"
|
|
|
|
/>
|
2011-08-21 04:30:11 +08:00
|
|
|
<!-- android:xlargeScreens="true" screen supported only after Android-9 -->
|
2011-04-19 09:12:01 +08:00
|
|
|
|
2009-10-29 04:43:39 +08:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
|
2008-10-16 08:41:50 +08:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2011-11-10 00:34:49 +08:00
|
|
|
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
2009-02-24 23:45:42 +08:00
|
|
|
<uses-permission android:name="android.permission.RECEIVE_SMS" />
|
2009-02-27 00:39:17 +08: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 12:56:49 +08:00
|
|
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
|
2009-11-03 07:43:09 +08:00
|
|
|
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
2012-06-05 21:49:50 +08:00
|
|
|
<uses-permission android:name="android.permission.WRITE_CONTACTS" />
|
2009-11-06 03: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-12 04:37:11 +08:00
|
|
|
<uses-permission android:name="android.permission.BROADCAST_STICKY" />
|
2012-06-05 21:49:50 +08:00
|
|
|
|
2011-04-19 09:12:01 +08:00
|
|
|
<uses-feature android:name="android.hardware.camera" />
|
|
|
|
<uses-feature android:name="android.hardware.camera.autofocus" />
|
|
|
|
|
2008-11-18 06:03:21 +08:00
|
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name"
|
2011-10-21 04:26:30 +08:00
|
|
|
android:debuggable="true">
|
2012-06-05 21:49:50 +08: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-30 07:23:20 +08:00
|
|
|
<intent-filter>
|
2013-04-23 07:57:54 +08:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
2011-06-30 07:23:20 +08:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
2008-10-16 05:24:39 +08:00
|
|
|
</application>
|
2011-04-19 09:12:01 +08:00
|
|
|
|
2012-08-14 01:27:34 +08:00
|
|
|
<uses-sdk android:minSdkVersion="7" />
|
2012-06-05 21:49:50 +08:00
|
|
|
</manifest>
|