ADD week 5

This commit is contained in:
2025-03-31 16:33:42 +02:00
parent 86f265f22d
commit bf645048e6
4927 changed files with 544053 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
package androidx.startup;
import android.util.Log;
/* loaded from: classes.dex */
public final class StartupLogger {
static final boolean DEBUG = false;
private static final String TAG = "StartupLogger";
private StartupLogger() {
}
public static void i(String str) {
Log.i(TAG, str);
}
public static void w(String str) {
Log.w(TAG, str);
}
public static void e(String str, Throwable th) {
Log.e(TAG, str, th);
}
}