From 2b7c14f2b68a26cba893855cd1a142328888bb13 Mon Sep 17 00:00:00 2001 From: Maksymilian Jopek Date: Fri, 19 Jul 2024 23:49:36 +0200 Subject: Initial commit Android app works, but Android says it uses much more battery than ntfy.sh, which should never happen goimapnotify works Logo is awesome <3 There are problems with constant working, presumably after restarts. --- android/settings.gradle.kts | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 android/settings.gradle.kts (limited to 'android/settings.gradle.kts') diff --git a/android/settings.gradle.kts b/android/settings.gradle.kts new file mode 100644 index 0000000..ff17651 --- /dev/null +++ b/android/settings.gradle.kts @@ -0,0 +1,24 @@ +pluginManagement { + repositories { + google { + content { + includeGroupByRegex("com\\.android.*") + includeGroupByRegex("com\\.google.*") + includeGroupByRegex("androidx.*") + } + } + mavenCentral() + gradlePluginPortal() + } +} +dependencyResolutionManagement { + repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) + repositories { + google() + mavenCentral() + } +} + +rootProject.name = "Ding-Dong Mail" +include(":app") + \ No newline at end of file -- cgit v1.3.1