Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ed15f880 authored by Mohammed Althaf T's avatar Mohammed Althaf T 😊
Browse files

Merge branch '0000-make-password-app-default-autofill' into 'main'

make password as default autofill provider

See merge request !139
parents e9a50f87 721ec10f
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -3,6 +3,9 @@ android_app_import {
    certificate: "platform",
    apk: "app-universal-release.apk",
    system_ext_specific: true,
    required: [
        "e_PasswordsFrameworksBaseOverlay",
    ],
    optional_uses_libs: [
      "androidx.window.extensions",
      "androidx.window.sidecar",
+8 −0
Original line number Diff line number Diff line
package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

runtime_resource_overlay {
    name: "e_PasswordsFrameworksBaseOverlay",
    product_specific: true,
}
+13 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="foundation.e.passwords.frameworksbaseoverlay"
    android:versionCode="1"
    android:versionName="1.0">

    <application android:hasCode="false" />

    <overlay 
        android:targetPackage="android"
        android:priority="0"
        android:isStatic="true" />
</manifest>
+4 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
    <string name="config_defaultAutofillService" translatable="false">foundation.e.passwords/com.hegocre.nextcloudpasswords.services.autofill.NCPAutofillService</string>
</resources>