mirror of
https://github.com/SinTan1729/ReVancedBuilder.git
synced 2024-12-26 12:48:36 -06:00
54 lines
1.6 KiB
Text
54 lines
1.6 KiB
Text
# List all the applications to be built in their separate sections.
|
|
# Only the post_script section is special. Look at README to understand what it does.
|
|
# All apks are pulled from APKPure.com
|
|
|
|
### Template (also look at the examples below)
|
|
# [entry_name]
|
|
# build = true/false, whether to build or not
|
|
# apk = name of the apk file
|
|
# apkpure_appname = name of the app in apkpure
|
|
# output_name = what you want the app to be named after patching, timestamp and .apk extension will be added automatically
|
|
# keystore = keystore to use for signing (optional)
|
|
# version = provide version name here (optional), if provided, automatic version determination will be turned off
|
|
###
|
|
|
|
# Note: Your app should be available at https://apkpure.com/apkpure_appname/apk
|
|
|
|
[youtube_nonroot]
|
|
build = true
|
|
pretty_name = YouTube
|
|
apk = com.google.android.youtube
|
|
apkpure_appname = youtube
|
|
root = false
|
|
output_name = YouTube_ReVanced_nonroot
|
|
keystore = revanced-yt-nonroot.keystore
|
|
|
|
[youtube_root]
|
|
build = false
|
|
pretty_name = YouTube (root)
|
|
apk = com.google.android.youtube
|
|
apkpure_appname = youtube
|
|
root = true
|
|
output_name = YouTube_ReVanced_root
|
|
keystore = revanced-yt-root.keystore
|
|
|
|
[youtube_music_nonroot]
|
|
build = true
|
|
pretty_name = YouTube Music
|
|
apk = com.google.android.apps.youtube.music
|
|
apkpure_appname = youtube-music
|
|
root = false
|
|
output_name = YouTube_Music_ReVanced_nonroot
|
|
keystore = revanced-ytm-nonroot.keystore
|
|
|
|
[youtube_music_root]
|
|
build = false
|
|
pretty_name = YouTube Music (root)
|
|
apk = com.google.android.apps.youtube.music
|
|
apkpure_appname = youtube-music
|
|
root = true
|
|
output_name = YouTube_Music_ReVanced_root
|
|
keystore = revanced-ytm-root.keystore
|
|
|
|
[post_script]
|
|
# file = post_script.sh
|