mirror of
https://github.com/moparisthebest/keepass2android
synced 2024-12-04 06:42:15 -05:00
6f22ad012e
* scheme (protocol) is always contained in path variables passed to JavaFileStorage implementors * file chooser improvements (internal browser displayed also in file chooser list e.g. when selecting an attachments, compatible with Solid Explorer content uris, removed OI stuff) * started GDrive support
24 lines
587 B
XML
24 lines
587 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>
|
|
<uses-permission android:name="android.permission.GET_ACCOUNTS"/>
|
|
|
|
</manifest>
|