Files
android_development/samples/devbytes/ui/ImmersiveMode/src/main/AndroidManifest.xml
Roman Nurik e7a6ab4fd8 Add Android 4.4 Immersive Mode DevByte sample code.
Change-Id: I3515e2742a4b8285f7e3f7c214af1d43dde605a0
2013-10-28 11:53:23 -04:00

51 lines
1.9 KiB
XML

<!--
Copyright 2013 The Android Open Source Project
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"
android:versionCode="1"
android:versionName="1.0"
package="com.example.android.immersive">
<uses-sdk android:minSdkVersion="19" android:targetSdkVersion="19" />
<application android:icon="@drawable/ic_launcher"
android:label="@string/immersive_mode"
android:allowBackup="true">
<activity android:name=".ImmersiveActivity"
android:label="@string/immersive_mode"
android:configChanges="orientation|keyboardHidden|screenSize"
android:theme="@style/ImmersiveTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".ImmersiveStickyActivity"
android:taskAffinity=""
android:label="@string/immersive_sticky"
android:configChanges="orientation|keyboardHidden|screenSize"
android:theme="@style/ImmersiveStickyTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>