mirror of
https://github.com/moparisthebest/keepass2android
synced 2024-12-05 15:12:20 -05:00
22 lines
512 B
XML
22 lines
512 B
XML
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
package="keepass2android.javafilestorage"
|
||
|
android:versionCode="1"
|
||
|
android:versionName="1.0" >
|
||
|
|
||
|
<uses-sdk
|
||
|
android:minSdkVersion="8"
|
||
|
android:targetSdkVersion="14" />
|
||
|
|
||
|
|
||
|
<application
|
||
|
android:allowBackup="true"
|
||
|
android:icon="@drawable/ic_launcher"
|
||
|
android:label="@string/app_name"
|
||
|
android:theme="@style/AppTheme" >
|
||
|
|
||
|
|
||
|
|
||
|
</application>
|
||
|
|
||
|
</manifest>
|