1
0
Fork 0
simtech-thunder/AndroidManifest.xml

34 lines
1.2 KiB
XML
Raw Normal View History

2014-05-06 16:53:23 +08:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.thunder.simtech"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
2014-05-21 15:13:35 +08:00
android:minSdkVersion="17"
android:targetSdkVersion="19" />
2014-05-21 11:49:09 +08:00
<uses-permission android:name="android.permission.INTERNET" />
2014-05-06 16:53:23 +08:00
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
2014-05-21 16:13:46 +08:00
android:theme="@style/AppTheme"><!--
android:theme="@android:style/Theme.Holo.Light.NoActionBar"> -->
2014-05-06 16:53:23 +08:00
<activity
2014-05-21 15:13:35 +08:00
android:uiOptions="splitActionBarWhenNarrow"
2014-05-06 16:53:23 +08:00
android:name="com.thunder.simtech.MainActivity"
2014-05-21 15:13:35 +08:00
android:label="@string/app_name">
<meta-data android:name="android.support.UI_OPTIONS"
android:value="splitActionBarWhenNarrow" />
2014-05-06 16:53:23 +08:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
2014-05-21 15:13:35 +08:00
</activity>
2014-05-06 16:53:23 +08:00
</application>
</manifest>