forked from wordpress-mobile/PasscodeLock-Android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
29 lines (24 loc) · 909 Bytes
/
AndroidManifest.xml
File metadata and controls
29 lines (24 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="org.wordpress.passcodelock"
android:versionCode="1"
android:versionName="0.0.5" >
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="22" />
<!-- Define the following activities in your project
<activity
android:name="org.wordpress.passcodelock.PasscodeUnlockActivity"
android:screenOrientation="portrait"
android:theme="@style/Theme.Holo.Light.NoActionBar"
android:windowSoftInputMode="stateHidden" >
</activity>
<activity
android:name="org.wordpress.passcodelock.PasscodeManagePasswordActivity"
android:screenOrientation="portrait"
android:theme="@style/Theme.Holo.Light.NoActionBar"
android:windowSoftInputMode="stateHidden" >
</activity>
-->
</manifest>