-
Notifications
You must be signed in to change notification settings - Fork 7.4k
/
Copy pathbuild.gradle.kts
78 lines (65 loc) · 2.61 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
plugins {
id("com.android.application")
id("kotlin-android")
id("com.google.gms.google-services")
}
android {
namespace = "com.google.samples.quickstart.functions"
// Changes the test build type for instrumented tests to "stage".
testBuildType = "release"
compileSdk = 35
defaultConfig {
applicationId = "com.google.samples.quickstart.functions"
minSdk = 23
targetSdk = 35
versionCode = 1
versionName = "1.0"
multiDexEnabled = true
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
getByName("release") {
isMinifyEnabled = false
testProguardFiles(getDefaultProguardFile("proguard-android.txt"), "test-proguard-rules.pro")
proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro")
signingConfig = signingConfigs.getByName("debug")
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "17"
}
buildFeatures {
viewBinding = true
}
}
dependencies {
implementation(project(":internal:lintchecks"))
implementation(project(":internal:chooserx"))
implementation("androidx.activity:activity-ktx:1.10.1")
implementation("androidx.fragment:fragment-ktx:1.8.6")
implementation("androidx.appcompat:appcompat:1.7.0")
implementation("com.google.android.material:material:1.12.0")
// Import the Firebase BoM (see: https://firebase.google.com/docs/android/learn-more#bom)
implementation(platform("com.google.firebase:firebase-bom:33.10.0"))
// Cloud Functions for Firebase
// TODO(thatfiredev): remove the pinned dependency version when
// https://github.com/firebase/firebase-android-sdk/issues/6522 is fixed
implementation("com.google.firebase:firebase-functions:21.0.0")
// Firebase Authentication
implementation("com.google.firebase:firebase-auth")
// Firebase Cloud Messaging
implementation("com.google.firebase:firebase-messaging")
// Firebase UI
implementation("com.firebaseui:firebase-ui-auth:8.0.2")
// Google Play services
implementation("com.google.android.gms:play-services-auth:21.2.0")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1")
androidTestImplementation("androidx.test:rules:1.6.1")
androidTestImplementation("androidx.test:runner:1.6.2")
androidTestImplementation("androidx.test.uiautomator:uiautomator:2.3.0")
}