- 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
18 lines
527 B
Java
18 lines
527 B
Java
package com.helpshift.util;
|
|
|
|
import android.app.Activity;
|
|
import android.content.Intent;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public abstract class ActivityUtil {
|
|
public static void startLauncherActivityAndFinish(Activity activity) {
|
|
if (activity != null) {
|
|
Intent launchIntent = ApplicationUtil.getLaunchIntent(activity, activity.getPackageName());
|
|
if (launchIntent != null) {
|
|
activity.startActivity(launchIntent);
|
|
}
|
|
activity.finish();
|
|
}
|
|
}
|
|
}
|