File: AndroidManifest.xml

package info (click to toggle)
jitterentropy-library 3.6.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 676 kB
  • sloc: ansic: 4,030; sh: 711; makefile: 247; xml: 19
file content (19 lines) | stat: -rw-r--r-- 869 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="de.chronox.jitterentropy"
      android:versionCode="1"
      android:versionName="1.0">
    <application android:label="jitterentropy" android:hasCode="false">
        <activity android:name="android.app.NativeActivity"
                  android:label="jitterentropy"
                  android:configChanges="orientation|keyboardHidden">
         <meta-data android:name="android.app.lib_name"
                    android:value="jitterentropy" />
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
    <uses-sdk android:minSdkVersion="9" />
</manifest>