2012-05-31 10:59:20 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
|
|
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.
|
|
|
|
-->
|
2014-06-13 02:47:41 +08:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="__PACKAGE__" android:versionName="1.0" android:versionCode="1" android:hardwareAccelerated="true">
|
2012-05-31 10:59:20 +08:00
|
|
|
<supports-screens
|
|
|
|
android:largeScreens="true"
|
|
|
|
android:normalScreens="true"
|
|
|
|
android:smallScreens="true"
|
|
|
|
android:xlargeScreens="true"
|
|
|
|
android:resizeable="true"
|
|
|
|
android:anyDensity="true"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2014-04-21 15:17:23 +08:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
2012-05-31 10:59:20 +08:00
|
|
|
|
|
|
|
<application android:icon="@drawable/icon" android:label="@string/app_name"
|
2014-09-09 21:38:15 +08:00
|
|
|
android:hardwareAccelerated="true" android:supportsRtl="true">
|
2014-06-04 04:08:35 +08:00
|
|
|
<activity android:name="__ACTIVITY__"
|
|
|
|
android:label="@string/activity_name"
|
|
|
|
android:launchMode="singleTop"
|
2012-09-18 23:49:11 +08:00
|
|
|
android:theme="@android:style/Theme.Black.NoTitleBar"
|
2014-07-08 01:07:51 +08:00
|
|
|
android:windowSoftInputMode="adjustResize"
|
2012-07-28 04:31:25 +08:00
|
|
|
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale">
|
2014-06-04 04:08:35 +08:00
|
|
|
<intent-filter android:label="@string/launcher_name">
|
2012-05-31 10:59:20 +08:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
|
2013-06-18 02:23:17 +08:00
|
|
|
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="__APILEVEL__"/>
|
2014-06-04 04:08:35 +08:00
|
|
|
</manifest>
|