mirror of
https://github.com/revanced/revanced-integrations.git
synced 2024-12-03 17:22:54 +01:00
parent
0be0ffd42a
commit
f4650b1139
@ -18,7 +18,6 @@ import android.preference.PreferenceFragment;
|
|||||||
import android.preference.PreferenceScreen;
|
import android.preference.PreferenceScreen;
|
||||||
import android.preference.SwitchPreference;
|
import android.preference.SwitchPreference;
|
||||||
|
|
||||||
import com.google.android.apps.youtube.app.YouTubeTikTokRoot_Application;
|
|
||||||
import com.google.android.apps.youtube.app.application.Shell_HomeActivity;
|
import com.google.android.apps.youtube.app.application.Shell_HomeActivity;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
@ -174,7 +173,7 @@ public class ReVancedSettingsFragment extends PreferenceFragment {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
private String getPackageName() {
|
private String getPackageName() {
|
||||||
Context context = YouTubeTikTokRoot_Application.getAppContext();
|
Context context = ReVancedUtils.getContext();
|
||||||
if (context == null) {
|
if (context == null) {
|
||||||
LogHelper.printException(ReVancedSettingsFragment.class, "Context is null, returning com.google.android.youtube!");
|
LogHelper.printException(ReVancedSettingsFragment.class, "Context is null, returning com.google.android.youtube!");
|
||||||
return "com.google.android.youtube";
|
return "com.google.android.youtube";
|
||||||
|
@ -5,8 +5,6 @@ import android.content.res.Resources;
|
|||||||
import android.os.Handler;
|
import android.os.Handler;
|
||||||
import android.os.Looper;
|
import android.os.Looper;
|
||||||
|
|
||||||
import com.google.android.apps.youtube.app.YouTubeTikTokRoot_Application;
|
|
||||||
|
|
||||||
import app.revanced.integrations.sponsorblock.player.PlayerType;
|
import app.revanced.integrations.sponsorblock.player.PlayerType;
|
||||||
|
|
||||||
public class ReVancedUtils {
|
public class ReVancedUtils {
|
||||||
@ -17,13 +15,6 @@ public class ReVancedUtils {
|
|||||||
//Used by Integrations patch
|
//Used by Integrations patch
|
||||||
public static Context context;
|
public static Context context;
|
||||||
//Used by Integrations patch
|
//Used by Integrations patch
|
||||||
public static Context getAppContext() {
|
|
||||||
if (context != null) {
|
|
||||||
return context;
|
|
||||||
}
|
|
||||||
LogHelper.printException(ReVancedUtils.class, "Context is null!");
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
public static void setNewVideo(boolean started) {
|
public static void setNewVideo(boolean started) {
|
||||||
LogHelper.debug(ReVancedUtils.class, "New video started: " + started);
|
LogHelper.debug(ReVancedUtils.class, "New video started: " + started);
|
||||||
@ -61,7 +52,6 @@ public class ReVancedUtils {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static Context getContext() {
|
public static Context getContext() {
|
||||||
Context context = YouTubeTikTokRoot_Application.getAppContext();
|
|
||||||
if (context != null) {
|
if (context != null) {
|
||||||
return context;
|
return context;
|
||||||
} else {
|
} else {
|
||||||
|
@ -1,10 +0,0 @@
|
|||||||
package com.google.android.apps.youtube.app;
|
|
||||||
|
|
||||||
import android.app.Application;
|
|
||||||
import android.content.Context;
|
|
||||||
|
|
||||||
public class YouTubeTikTokRoot_Application extends Application {
|
|
||||||
public static Context getAppContext() {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user