Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
package com.google.android.datatransport.runtime.time;
/* loaded from: classes2.dex */
public interface Clock {
long getTime();
}

View File

@@ -0,0 +1,12 @@
package com.google.android.datatransport.runtime.time;
/* loaded from: classes2.dex */
public abstract class TimeModule {
public static Clock eventClock() {
return new WallTimeClock();
}
public static Clock uptimeClock() {
return new UptimeClock();
}
}

View File

@@ -0,0 +1,25 @@
package com.google.android.datatransport.runtime.time;
import com.google.android.datatransport.runtime.dagger.internal.Factory;
import com.google.android.datatransport.runtime.dagger.internal.Preconditions;
/* loaded from: classes2.dex */
public final class TimeModule_EventClockFactory implements Factory {
public static final class InstanceHolder {
public static final TimeModule_EventClockFactory INSTANCE = new TimeModule_EventClockFactory();
}
@Override // javax.inject.Provider
public Clock get() {
return eventClock();
}
public static TimeModule_EventClockFactory create() {
return InstanceHolder.INSTANCE;
}
public static Clock eventClock() {
return (Clock) Preconditions.checkNotNull(TimeModule.eventClock(), "Cannot return null from a non-@Nullable @Provides method");
}
}

View File

@@ -0,0 +1,25 @@
package com.google.android.datatransport.runtime.time;
import com.google.android.datatransport.runtime.dagger.internal.Factory;
import com.google.android.datatransport.runtime.dagger.internal.Preconditions;
/* loaded from: classes2.dex */
public final class TimeModule_UptimeClockFactory implements Factory {
public static final class InstanceHolder {
public static final TimeModule_UptimeClockFactory INSTANCE = new TimeModule_UptimeClockFactory();
}
@Override // javax.inject.Provider
public Clock get() {
return uptimeClock();
}
public static TimeModule_UptimeClockFactory create() {
return InstanceHolder.INSTANCE;
}
public static Clock uptimeClock() {
return (Clock) Preconditions.checkNotNull(TimeModule.uptimeClock(), "Cannot return null from a non-@Nullable @Provides method");
}
}

View File

@@ -0,0 +1,11 @@
package com.google.android.datatransport.runtime.time;
import android.os.SystemClock;
/* loaded from: classes2.dex */
public class UptimeClock implements Clock {
@Override // com.google.android.datatransport.runtime.time.Clock
public long getTime() {
return SystemClock.elapsedRealtime();
}
}

View File

@@ -0,0 +1,9 @@
package com.google.android.datatransport.runtime.time;
/* loaded from: classes2.dex */
public class WallTimeClock implements Clock {
@Override // com.google.android.datatransport.runtime.time.Clock
public long getTime() {
return System.currentTimeMillis();
}
}