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

Commit b88c3e63 authored by Zhi Dou's avatar Zhi Dou
Browse files

make java reader library availiable for mainline

Test: atest aconfig.test.java
Bug: 349874828
Change-Id: I2cabfa9665e5c474ba64f5969e96e9dae2fdcb9b
parent ca4c83ef
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -145,4 +145,10 @@ java_library {
        "srcs/**/*.java",
    ],
    sdk_version: "core_current",
    min_sdk_version: "29",
    host_supported: true,
    apex_available: [
        "//apex_available:platform",
        "//apex_available:anyapex",
    ],
}
 No newline at end of file
+6 −0
Original line number Diff line number Diff line
@@ -175,4 +175,10 @@ java_library {
        "aconfig_storage_file_java",
    ],
    sdk_version: "core_current",
    host_supported: true,
    min_sdk_version: "29",
    apex_available: [
        "//apex_available:platform",
        "//apex_available:anyapex",
    ],
}
+15 −0
Original line number Diff line number Diff line
package android.util;

public final class Log {
    public static int i(String tag, String msg) {
        return 0;
    }

    public static int e(String tag, String msg) {
        return 0;
    }

    public static int e(String tag, String msg, Throwable tr) {
        return 0;
    }
}