summaryrefslogtreecommitdiff
path: root/settings.gradle.kts
diff options
context:
space:
mode:
authorA404M <ahmadmahmoudiprogrammer@gmail.com>2024-12-18 03:28:02 +0330
committerA404M <ahmadmahmoudiprogrammer@gmail.com>2024-12-18 03:28:02 +0330
commitd4573cacc141748c44bb6bbea7528bdd46afc3d5 (patch)
treed5915bd32b2e58bae60ca906ec9475656c8a0e87 /settings.gradle.kts
initial commit
Diffstat (limited to 'settings.gradle.kts')
-rw-r--r--settings.gradle.kts24
1 files changed, 24 insertions, 0 deletions
diff --git a/settings.gradle.kts b/settings.gradle.kts
new file mode 100644
index 0000000..bdb5011
--- /dev/null
+++ b/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 = "Calculator"
+include(":app")
+ \ No newline at end of file