mirror of
https://github.com/sotam0316/docker-py-revanced.git
synced 2026-04-25 03:48:37 +09:00
✨ New app tv.twitch.android.app
This commit is contained in:
@@ -128,6 +128,7 @@ By default, script build the version as recommended by Revanced team.
|
|||||||
8. nyx-music-player
|
8. nyx-music-player
|
||||||
9. icon-pack-studio
|
9. icon-pack-studio
|
||||||
10. ticktick
|
10. ticktick
|
||||||
|
11. twitch
|
||||||
|
|
||||||
2. Remember to download the **_Microg_**. Otherwise, you will not be able to open YouTube.
|
2. Remember to download the **_Microg_**. Otherwise, you will not be able to open YouTube.
|
||||||
3. By default, it will build only `youtube`. To build other apps supported by revanced team.
|
3. By default, it will build only `youtube`. To build other apps supported by revanced team.
|
||||||
|
|||||||
+1
-1
@@ -19,7 +19,7 @@ class RevancedConfig:
|
|||||||
self.session.headers["User-Agent"] = "anything"
|
self.session.headers["User-Agent"] = "anything"
|
||||||
self.build_extended = env.bool("BUILD_EXTENDED", False)
|
self.build_extended = env.bool("BUILD_EXTENDED", False)
|
||||||
self.apk_mirror = "https://www.apkmirror.com"
|
self.apk_mirror = "https://www.apkmirror.com"
|
||||||
self.upto_down = ["spotify", "nyx-music-player", "icon-pack-studio"]
|
self.upto_down = ["spotify", "nyx-music-player", "icon-pack-studio", "twitch"]
|
||||||
self.keystore_name = env.str("KEYSTORE_FILE_NAME", "revanced.keystore")
|
self.keystore_name = env.str("KEYSTORE_FILE_NAME", "revanced.keystore")
|
||||||
self.apps = env.list("PATCH_APPS", default_build)
|
self.apps = env.list("PATCH_APPS", default_build)
|
||||||
self.extended_apps: List[str] = ["youtube", "youtube_music"]
|
self.extended_apps: List[str] = ["youtube", "youtube_music"]
|
||||||
|
|||||||
@@ -48,6 +48,7 @@ class Patches(object):
|
|||||||
"com.awedea.nyx": ("nyx-music-player", "_nyx"),
|
"com.awedea.nyx": ("nyx-music-player", "_nyx"),
|
||||||
"ginlemon.iconpackstudio": ("icon-pack-studio", "_iconpackstudio"),
|
"ginlemon.iconpackstudio": ("icon-pack-studio", "_iconpackstudio"),
|
||||||
"com.ticktick.task": ("ticktik", "_ticktik"),
|
"com.ticktick.task": ("ticktik", "_ticktik"),
|
||||||
|
"tv.twitch.android.app": ("twitch", "_twitch"),
|
||||||
}
|
}
|
||||||
|
|
||||||
for app_name in (revanced_app_ids[x][1] for x in revanced_app_ids):
|
for app_name in (revanced_app_ids[x][1] for x in revanced_app_ids):
|
||||||
@@ -120,6 +121,7 @@ class Patches(object):
|
|||||||
"nyx-music-player": "_nyx",
|
"nyx-music-player": "_nyx",
|
||||||
"icon-pack-studio": "_iconpackstudio",
|
"icon-pack-studio": "_iconpackstudio",
|
||||||
"ticktik": "_ticktik",
|
"ticktik": "_ticktik",
|
||||||
|
"twitch": "_twitch",
|
||||||
}
|
}
|
||||||
if not (app_name := app_names.get(app)):
|
if not (app_name := app_names.get(app)):
|
||||||
raise AppNotFound(app_name)
|
raise AppNotFound(app_name)
|
||||||
|
|||||||
Reference in New Issue
Block a user