mirror of
https://github.com/sotam0316/docker-py-revanced.git
synced 2026-04-25 03:48:37 +09:00
✨ No More GitHub Abuse
This commit is contained in:
+2
-2
@@ -5,7 +5,7 @@ from typing import List
|
||||
from environs import Env
|
||||
from requests import Session
|
||||
|
||||
from src.utils import supported_apps
|
||||
from src.utils import default_build
|
||||
|
||||
|
||||
class RevancedConfig:
|
||||
@@ -20,7 +20,7 @@ class RevancedConfig:
|
||||
self.apk_mirror = "https://www.apkmirror.com"
|
||||
self.upto_down = ["spotify"]
|
||||
self.keystore_name = env.str("KEYSTORE_FILE_NAME", "revanced.keystore")
|
||||
self.apps = env.list("PATCH_APPS", supported_apps)
|
||||
self.apps = env.list("PATCH_APPS", default_build)
|
||||
self.extended_apps: List[str] = ["youtube", "youtube_music"]
|
||||
self.rip_libs_apps: List[str] = ["youtube"]
|
||||
self.normal_cli_jar = "revanced-cli.jar"
|
||||
|
||||
+1
-7
@@ -1,14 +1,8 @@
|
||||
"""Utilities."""
|
||||
from typing import Dict
|
||||
|
||||
supported_apps = [
|
||||
default_build = [
|
||||
"youtube",
|
||||
"youtube_music",
|
||||
"twitter",
|
||||
"reddit",
|
||||
"tiktok",
|
||||
"warnwetter",
|
||||
"spotify",
|
||||
]
|
||||
possible_archs = ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user