forked from gdgriga/androidify-yourself
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
55 lines (47 loc) · 1.29 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
43
44
45
46
47
48
49
50
51
52
53
54
55
buildscript {
repositories {
google()
mavenCentral()
mavenLocal()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.0'
classpath 'com.google.gms:google-services:4.3.15'
}
}
apply plugin: 'com.android.application'
repositories {
google()
mavenCentral()
mavenLocal()
}
android {
compileSdkVersion 33
defaultConfig {
minSdkVersion 19
targetSdkVersion 33
versionCode 9
versionName "1.3"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
namespace 'com.valleydevfest.androidify'
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'androidx.viewpager2:viewpager2:1.0.0'
implementation 'androidx.fragment:fragment:1.6.1'
implementation 'com.google.firebase:firebase-auth:22.1.1'
implementation 'com.google.firebase:firebase-database:20.2.2'
// Google
implementation 'com.google.android.gms:play-services-auth:20.6.0'
}
apply plugin: 'com.google.gms.google-services'