diff --git a/README.md b/README.md index 0fd37fe..b2dd5c8 100644 --- a/README.md +++ b/README.md @@ -138,6 +138,7 @@ By default, script build the version as recommended by Revanced team. 16. [windy](https://windy.en.uptodown.com/android) 17. [my-expenses](https://my-expenses.en.uptodown.com/android) 18. [backdrops](https://backdrops.en.uptodown.com/android) + 19. [sleep-as-android](https://sleep-as-android.en.uptodown.com/android) 2. Remember to download the **_Microg_**. Otherwise, you will not be able to open YouTube. 3. By default, it will build only `youtube`. To build other apps supported by revanced team. diff --git a/src/config.py b/src/config.py index 26a9a39..b14fcaa 100644 --- a/src/config.py +++ b/src/config.py @@ -27,6 +27,7 @@ class RevancedConfig: "windy", "my-expenses", "backdrops", + "sleep-as-android", ] self.apk_pure = ["pflotsh-ecmwf", "hex-editor"] self.keystore_name = env.str("KEYSTORE_FILE_NAME", "revanced.keystore") diff --git a/src/patches.py b/src/patches.py index fc354c6..3974adc 100644 --- a/src/patches.py +++ b/src/patches.py @@ -29,6 +29,7 @@ class Patches(object): "co.windyapp.android": ("windy", "_windy"), "org.totschnig.myexpenses": ("my-expenses", "_expenses"), "com.backdrops.wallpapers": ("backdrops", "_backdrops"), + "com.urbandroid.sleep": ("sleep", "_sleep"), } revanced_extended_app_ids = { "com.google.android.youtube": ("youtube", "_yt"), @@ -140,6 +141,7 @@ class Patches(object): "windy": "_windy", "my-expenses": "_expenses", "backdrops": "_backdrops", + "sleep": "_sleep", } if not (app_name := app_names.get(app)): raise AppNotFound(app)