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

Commit 4282d4e9 authored by dev-12's avatar dev-12
Browse files

add password app prebuild and overlay

parent 5c191a8b
Loading
Loading
Loading
Loading

PasswordApp/Android.bp

0 → 100644
+13 −0
Original line number Diff line number Diff line
android_app_import {
    name: "PasswordAppPrebuilt",
    certificate: "platform",
    apk: "app-universal-release.apk",
    product_specific: true,
    required: [
        "e_PasswordAppFrameworksBaseOverlay",
    ],
    optional_uses_libs: [
        "androidx.window.extensions",
        "androidx.window.sidecar",
    ],
}
+132 B

File added.

No diff preview for this file type.

+13 −0
Original line number Diff line number Diff line
//
// SPDX-FileCopyrightText: 2024 The LineageOS Project
// SPDX-License-Identifier: Apache-2.0
//

package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

runtime_resource_overlay {
    name: "e_PasswordAppFrameworksBaseOverlay",
    product_specific: true,
}
+17 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     SPDX-FileCopyrightText: 2024 The LineageOS Project
     SPDX-License-Identifier: Apache-2.0
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="foundation.e.password.frameworksbaseoverlay"
    android:versionCode="1"
    android:versionName="1.0">

    <application android:hasCode="false" />

    <overlay 
        android:targetPackage="android"
        android:priority="0"
        android:isStatic="true" />
</manifest>
+8 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     SPDX-FileCopyrightText: 2024 The LineageOS Project
     SPDX-License-Identifier: Apache-2.0
-->
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
    <string name="config_defaultAutofillService" translatable="false">foundation.e.passwordapp/com.hegocre.nextcloudpasswords.services.autofill.NCPAutofillService</string>
</resources>
Loading