Browse code

Initial commit (losing old history)

Dario Rodriguez authored on 08/04/2026 17:25:38
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,49 @@
1
+/*
2
+ * Copyright (c) 2023 Samson Achiaga
3
+ *
4
+ * Licensed under the Apache License, Version 2.0 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ *     http://www.apache.org/licenses/LICENSE-2.0
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" BASIS,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+
17
+plugins{
18
+    id("com.google.devtools.ksp") version "2.1.0-1.0.29" apply false
19
+}
20
+
21
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
+buildscript {
23
+    repositories {
24
+        google()
25
+        mavenCentral()
26
+        maven {url = uri("https://maven.google.com")}
27
+        maven { url = uri("https://jitpack.io") }
28
+    }
29
+    
30
+    dependencies {
31
+        classpath ("com.android.tools.build:gradle:8.7.3")
32
+        classpath ("org.jetbrains.kotlin:kotlin-gradle-plugin:2.1.0")
33
+        classpath ("androidx.navigation:navigation-safe-args-gradle-plugin:2.8.5")
34
+        classpath ("com.google.dagger:hilt-android-gradle-plugin:2.53.1")
35
+        classpath("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3")
36
+
37
+        // NOTE: Do not place your application dependencies here; they belong
38
+        // in the individual module build.gradle files
39
+    }
40
+}
41
+
42
+allprojects {
43
+    repositories {
44
+        google()
45
+        mavenCentral()
46
+        maven {url = uri("https://maven.google.com")}
47
+        maven { url = uri("https://jitpack.io") }
48
+    }
49
+}
0 50
\ No newline at end of file