Add Discord community version (64-bit only)

- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
This commit is contained in:
2026-02-18 15:48:36 -08:00
parent c19eb3d7ff
commit c080f0d97f
26930 changed files with 2529574 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
package com.helpshift.lifecycle;
import android.app.Application;
/* loaded from: classes3.dex */
public class HSAppLifeCycleController {
public static HSAppLifeCycleController instance;
public BaseLifeCycleTracker lifeCycleTracker;
public static HSAppLifeCycleController getInstance() {
if (instance == null) {
instance = new HSAppLifeCycleController();
}
return instance;
}
public void init(Application application, boolean z, HSAppLifeCycleEventsHandler hSAppLifeCycleEventsHandler) {
if (this.lifeCycleTracker != null) {
return;
}
if (z) {
this.lifeCycleTracker = new ManualAppLifeCycleTracker(hSAppLifeCycleEventsHandler);
} else {
this.lifeCycleTracker = new DefaultAppLifeCycleTracker(application, hSAppLifeCycleEventsHandler);
}
}
public void onManualAppForegroundAPI() {
BaseLifeCycleTracker baseLifeCycleTracker = this.lifeCycleTracker;
if (baseLifeCycleTracker == null) {
return;
}
baseLifeCycleTracker.onManualAppForegroundAPI();
}
public void onManualAppBackgroundAPI() {
BaseLifeCycleTracker baseLifeCycleTracker = this.lifeCycleTracker;
if (baseLifeCycleTracker == null) {
return;
}
baseLifeCycleTracker.onManualAppBackgroundAPI();
}
public void onAppForeground() {
BaseLifeCycleTracker baseLifeCycleTracker = this.lifeCycleTracker;
if (baseLifeCycleTracker == null) {
return;
}
baseLifeCycleTracker.notifyAppForeground();
}
}