Added Instagram

This commit is contained in:
Nikhil Badyal
2023-07-01 17:07:03 +05:30
parent dc9d8ab041
commit e8e7ddbae4
4 changed files with 6 additions and 0 deletions
+2
View File
@@ -68,6 +68,7 @@ class RevancedConfig(object):
"vsco": f"{self.apk_mirror}/apk/vsco/vsco-cam/",
"nova_launcher": f"{self.apk_mirror}/apk/teslacoil-software/nova-launcher/",
"netguard": f"{self.apk_mirror}/apk/marcel-bokhorst/netguard-no-root-firewall/",
"instagram": f"{self.apk_mirror}/apk/instagram/instagram-instagram/",
}
self.apk_mirror_version_urls = {
"reddit": f"{self.apk_mirror_urls.get('reddit')}reddit",
@@ -84,6 +85,7 @@ class RevancedConfig(object):
"vsco": f"{self.apk_mirror_urls.get('vsco')}vsco-cam",
"nova_launcher": f"{self.apk_mirror_urls.get('nova_launcher')}nova-launcher",
"netguard": f"{self.apk_mirror_urls.get('netguard')}netguard-no-root-firewall",
"instagram": f"{self.apk_mirror_urls.get('instagram')}instagram-instagram",
}
self.archs_to_build = env.list("ARCHS_TO_BUILD", [])
self.alternative_youtube_patches = env.list("ALTERNATIVE_YOUTUBE_PATCHES", [])
+2
View File
@@ -33,6 +33,7 @@ class Patches(object):
"com.zombodroid.MemeGenerator": ("meme-generator-free", "_meme-generator-free"),
"com.teslacoilsw.launcher": ("nova_launcher", "_nova_launcher"),
"eu.faircode.netguard": ("netguard", "_netguard"),
"com.instagram.android": ("instagram", "_instagram"),
}
revanced_extended_app_ids = {
"com.google.android.youtube": ("youtube", "_yt"),
@@ -150,6 +151,7 @@ class Patches(object):
"meme-generator-free": "_meme-generator-free",
"nova_launcher": "_nova_launcher",
"netguard": "_netguard",
"instagram": "_instagram",
}
if not (app_name := app_names.get(app)):
raise AppNotFound(app)
+1
View File
@@ -29,6 +29,7 @@ all_builds = [
"meme-generator-free",
"nova_launcher",
"netguard",
"instagram",
]
possible_archs = ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]