|
|
@@ -1,8 +1,9 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
package="info.knacki.pass">
|
|
|
+
|
|
|
<!-- For sync -->
|
|
|
- <uses-permission android:name="android.permission.INTERNET"/>
|
|
|
+ <uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
|
<!-- For fingerprint unlock -->
|
|
|
<uses-permission android:name="android.permission.USE_FINGERPRINT" />
|
|
|
@@ -13,12 +14,12 @@
|
|
|
|
|
|
<application
|
|
|
android:allowBackup="true"
|
|
|
+ android:extractNativeLibs="false"
|
|
|
android:fullBackupContent="true"
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
android:label="@string/app_name"
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
android:supportsRtl="true"
|
|
|
- android:extractNativeLibs="false"
|
|
|
android:theme="@style/AppTheme">
|
|
|
<service
|
|
|
android:name=".input.InputService"
|
|
|
@@ -50,15 +51,17 @@
|
|
|
<activity
|
|
|
android:name=".ui.EditPasswordActivity"
|
|
|
android:windowSoftInputMode="adjustResize" />
|
|
|
- <activity android:name=".ui.GitPullActivity"/>
|
|
|
+ <activity android:name=".ui.GitPullActivity" />
|
|
|
+ <activity android:name=".ui.EncryptionInformationActivity" />
|
|
|
|
|
|
<provider
|
|
|
- android:authorities="info.knacki.pass.provider"
|
|
|
android:name="android.support.v4.content.FileProvider"
|
|
|
+ android:authorities="info.knacki.pass.provider"
|
|
|
android:grantUriPermissions="true">
|
|
|
<meta-data
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
android:resource="@xml/provider_paths" />
|
|
|
</provider>
|
|
|
</application>
|
|
|
+
|
|
|
</manifest>
|