-
Notifications
You must be signed in to change notification settings - Fork 405
/
Copy pathbuild.gradle.kts
55 lines (48 loc) · 1.67 KB
/
build.gradle.kts
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
43
44
45
46
47
48
49
50
51
52
53
54
55
plugins {
id("com.android.application")
id("kotlin-android")
id("com.google.gms.google-services")
id("com.google.devtools.ksp") version "2.1.20-1.0.32"
}
android {
namespace = "com.google.firebase.referencecode.storage"
compileSdk = 36
defaultConfig {
applicationId = "com.google.firebase.referencecode.storage"
minSdk = 21
targetSdk = 36
versionCode = 1
versionName = "1.0"
}
buildTypes {
getByName("release") {
isMinifyEnabled = false
proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro")
}
}
lint {
// TODO(thatfiredev): Remove this once
// https://github.com/bumptech/glide/issues/4940 is fixed
disable += "NotificationPermission"
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "17"
}
}
dependencies {
implementation("androidx.legacy:legacy-support-v4:1.0.0")
implementation("androidx.appcompat:appcompat:1.7.0")
// Import the BoM for the Firebase platform
implementation(platform("com.google.firebase:firebase-bom:33.12.0"))
// Add the dependency for the Cloud Storage library
// When using the BoM, you don't specify versions in Firebase library dependencies
implementation("com.google.firebase:firebase-storage")
implementation("com.firebaseui:firebase-ui-storage:8.0.2")
implementation("com.github.bumptech.glide:glide:4.16.0")
ksp("com.github.bumptech.glide:ksp:4.16.0")
implementation("androidx.constraintlayout:constraintlayout:2.2.1")
}