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

Commit 8a9a52d1 authored by Zhi Dou's avatar Zhi Dou Committed by Gerrit Code Review
Browse files

Merge "make java reader library availiable for mainline" into main

parents 01e6b4bc b88c3e63
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;
    }
}