-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
42 lines (35 loc) · 1.24 KB
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
// Top-level build file where you can add configuration options common to all sub-projects/modules.
// Dieses Skript wird benötigt um mit dem NavGraph navigieren zu können
buildscript {
// for Firebase
repositories {
google() // Google's Maven repository
mavenCentral() //Maven Central repository
}
ext {
// Hier werden die Versionnummer der Bibliotheken angegeben
navigation_graph = "2.5.0"
view_model = "2.5.0"
retrofit_version = "2.9.0"
moshi_version = "1.13.0"
preferences = "1.2.0"
coil_version = "2.0.0-rc02"
room_version = "2.4.2"
picasso_version = "2.71828"
serialization_version = "1.3.2"
gson_version = "2.9.0"
}
dependencies {
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:$view_model")
classpath 'com.google.gms:google-services:4.3.14' // Google Services plugin
classpath 'com.android.tools.build:gradle:8.3.1'
}
}
plugins {
id 'com.android.application' version '8.3.1' apply false
id 'com.android.library' version '8.3.1' apply false
id 'org.jetbrains.kotlin.android' version '1.9.0' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}