From d84c5c27ba677d3dccfe8cf2954ddb49111210a8 Mon Sep 17 00:00:00 2001 From: j-hc <25510067+j-hc@users.noreply.github.com> Date: Thu, 15 Sep 2022 19:00:44 +0300 Subject: [PATCH] link vanced microg --- README.md | 2 +- build.sh | 10 ++++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 549bb1fdf6..2ff6ac4592 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ The default config is for building Magisk modules for YouTube and YT Music, if y * Run the [workflow](../../actions/workflows/build.yml) * Grab your modules from [releases](../../releases) -**If you include microg patches in [build.conf](./build.conf), you get non-root APKs instead of Magisk modules. Apps except Youtube and Music will always be built as APKs regardless. To be able to use non-root variants of YT and Music you will need to install [Vanced MicroG](https://www.apkmirror.com/apk/team-vanced/microg-youtube-vanced/microg-youtube-vanced-0-2-24-220220-release/).** +**If you include microg patches in [build.conf](./build.conf), you get non-root APKs instead of Magisk modules. Apps except Youtube and Music will always be built as APKs regardless. To be able to use non-root variants of YT and Music you will need to install [Vanced MicroG](https://github.com/TeamVanced/VancedMicroG/releases).** ### **Note that the [CI workflow](../../actions/workflows/ci.yml) is scheduled to build the modules and APKs everyday if there is a change. You may want to disable it.** diff --git a/build.sh b/build.sh index e7bf859c14..9b98b7ca5b 100755 --- a/build.sh +++ b/build.sh @@ -34,13 +34,13 @@ if [ "$UPDATE_PREBUILTS" = true ]; then get_prebuilts; else set_prebuilts; fi reset_template get_cmpr +if [ "$BUILD_TWITTER" = true ]; then build_twitter & fi +if [ "$BUILD_REDDIT" = true ]; then build_reddit & fi +if [ "$BUILD_WARN_WETTER" = true ]; then build_warn_wetter & fi +if [ "$BUILD_TIKTOK" = true ]; then build_tiktok & fi if [ "$BUILD_YT" = true ]; then build_yt; fi if [ "$BUILD_MUSIC_ARM64_V8A" = true ]; then build_music $ARM64_V8A; fi if [ "$BUILD_MUSIC_ARM_V7A" = true ]; then build_music $ARM_V7A; fi -if [ "$BUILD_TWITTER" = true ]; then build_twitter; fi -if [ "$BUILD_REDDIT" = true ]; then build_reddit; fi -if [ "$BUILD_WARN_WETTER" = true ]; then build_warn_wetter; fi -if [ "$BUILD_TIKTOK" = true ]; then build_tiktok; fi if [ "$BUILD_MINDETACH_MODULE" = true ]; then echo "Building mindetach module" cd mindetach-magisk/mindetach/ @@ -51,5 +51,7 @@ if [ "$BUILD_MINDETACH_MODULE" = true ]; then cd ../../ fi +wait + reset_template echo "Done"