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

Commit 9d3d73b6 authored by dev-12's avatar dev-12 Committed by Nishith Khanna
Browse files

make password as default credential manager provider

parent 680a959a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ android_app_import {
    certificate: "platform",
    overrides: ["com.qualcomm.location"],
    required: [
        "e_GmsCoreFrameworksBaseOverlay",
        "e_FrameworksBaseOverlay",
        "privapp-permissions-com.google.android.gms.xml",
        "microg.xml",
    ],
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ android_app_import {
    apk: "app-universal-release.apk",
    system_ext_specific: true,
    required: [
        "e_PasswordsFrameworksBaseOverlay",
        "e_FrameworksBaseOverlay",
    ],
    optional_uses_libs: [
      "androidx.window.extensions",
+0 −8
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,
}
+0 −13
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>
+0 −4
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>
Loading