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

Commit caa5c129 authored by Quang Luong's avatar Quang Luong
Browse files

Update min_sdk_versions to match WifiTrackerLib

SettingsLib min_sdk_version (and modules dependent on it) should
match the updated min_sdk_version of WifiTrackerlib (30)

Test: build
Bug: 162368129
Change-Id: I65a3246b40fc724b157756daec635392e99141e1
parent 6387cdfb
Loading
Loading
Loading
Loading
+16 −15
Original line number Diff line number Diff line
@@ -80,6 +80,7 @@ genrule {
        "$(locations :wm_shell-sources)",
    out: ["wm_shell_protolog.json"],
}

// End ProtoLog

java_library {
@@ -104,7 +105,7 @@ android_library {
        "res",
    ],
    java_resources: [
        ":generate-wm_shell_protolog.json"
        ":generate-wm_shell_protolog.json",
    ],
    static_libs: [
        "androidx.appcompat_appcompat",
@@ -117,10 +118,10 @@ android_library {
        "protolog-lib",
        "SettingsLib",
        "WindowManager-Shell-proto",
        "jsr330"
        "jsr330",
    ],
    kotlincflags: ["-Xjvm-default=enable"],
    manifest: "AndroidManifest.xml",

    min_sdk_version: "26",
    min_sdk_version: "30",
}
+7 −4
Original line number Diff line number Diff line
@@ -27,9 +27,12 @@ android_library {

    resource_dirs: ["res"],

    srcs: ["src/**/*.java", "src/**/*.kt"],
    srcs: [
        "src/**/*.java",
        "src/**/*.kt",
    ],

    min_sdk_version: "21",
    min_sdk_version: "30",

}