Inject reddit id

This commit is contained in:
Nikhil Badyal
2023-07-13 16:50:48 +05:30
parent a62cf4266e
commit 0be39e7b42
7 changed files with 106 additions and 0 deletions
+1
View File
@@ -40,6 +40,7 @@ class RevancedConfig(object):
self.normal_cli_jar = "revanced-cli.jar"
self.normal_patches_jar = "revanced-patches.jar"
self.normal_integrations_apk = "revanced-integrations.apk"
self.normal_options_json = "options.json"
self.cli_jar = (
f"inotia00-{self.normal_cli_jar}"
if self.build_extended
+3
View File
@@ -85,6 +85,7 @@ class Parser(object):
cli = self.config.normal_cli_jar
patches = self.config.normal_patches_jar
integrations = self.config.normal_integrations_apk
options = self.config.normal_options_json
if self.config.build_extended and app in self.config.extended_apps:
cli = self.config.cli_jar
patches = self.config.patches_jar
@@ -102,6 +103,8 @@ class Parser(object):
f"Re-{app}-{version}{output_prefix}output.apk",
"--keystore",
self.config.keystore_name,
"--options",
options,
]
if is_experimental:
logger.debug("Using experimental features")