forked from crimera/twitter-apk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
33 lines (19 loc) · 946 Bytes
/
config.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
"""
any REPOSITORY string must contain "owner/repo"
any VERSION string can be empty to pick latest
ENABLED_BINS list can contain any combination of these string: "revanced", "lspatch", "xposed", "apkeditor", or "manifesteditor"
"""
APKMIRROR_URL: str = "https://www.apkmirror.com/apk/x-corp/twitter/"
REVANCED_PATCH_REPOSITORY: str = "crimera/piko"
REVANCED_PATCH_VERSION: str = ""
REVANCED_INTEGRATION_REPOSITORY: str = "crimera/revanced-integrations"
REVANCED_INTEGRATION_VERSION: str = ""
REVANCED_CLI_REPOSITORY: str = "inotia00/revanced-cli"
REVANCED_CLI_VERSION: str = "v4.6.2"
XPOSED_MODULE_REPOSITORY: str = "Xposed-Modules-Repo/com.twifucker.hachidori"
XPOSED_MODULE_VERSION: str = ""
LSPATCH_REPOSITORY: str = "JingMatrix/LSPatch"
LSPATCH_VERSION: str = ""
APKEDITOR_REPOSITORY: str = "REAndroid/APKEditor"
MANIFESTEDITOR_REPOSITORY: str = "WindySha/ManifestEditor"
ENABLED_BINS: list = ["revanced", "xposed", "apkeditor"]