-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
97 lines (88 loc) · 3.67 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'kotlin-parcelize'
id 'com.google.gms.google-services'
id 'kotlin-kapt'
id 'com.google.firebase.crashlytics'
}
android {
compileSdkVersion 32
buildToolsVersion "30.0.3"
applicationVariants.all { variant ->
variant.outputs.all { output ->
outputFileName = "bitNews-${output.baseName}_${variant.versionName}.apk"
}
}
buildFeatures {
viewBinding true
}
defaultConfig {
applicationId "com.example.demoapp"
minSdkVersion 26
targetSdkVersion 32
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
flavorDimensions "default"
productFlavors {
dev {
buildConfigField "String", "BASE_URL", "\"http://newsapi.org/v2/\""
buildConfigField "String", "API_KEY", "\"19b71eb781b0404b93feafc1badf4324\""
manifestPlaceholders = [google_maps_key: "AIzaSyBCG-QlN584MpiWMrZMe8CpIfl7ml4L5-g"]
}
production {
buildConfigField "String", "BASE_URL", "\"http://newsapi.org/v2/\""
buildConfigField "String", "API_KEY", "\"19b71eb781b0404b93feafc1badf4324\""
manifestPlaceholders = [google_maps_key: "AIzaSyBCG-QlN584MpiWMrZMe8CpIfl7ml4L5-g"]
}
}
}
dependencies {
implementation 'androidx.core:core-ktx:1.8.0'
implementation 'androidx.appcompat:appcompat:1.4.2'
implementation 'com.google.android.material:material:1.6.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.2.1'
implementation 'com.google.firebase:firebase-database:20.0.5'
implementation 'com.google.firebase:firebase-storage:20.0.1'
implementation 'com.google.android.gms:play-services-maps:18.1.0'
implementation 'com.google.firebase:firebase-auth:21.0.7'
implementation 'com.google.firebase:firebase-messaging:23.0.7'
implementation 'com.google.firebase:firebase-crashlytics:18.2.12'
implementation 'com.google.firebase:firebase-analytics-ktx:21.1.0'
testImplementation 'junit:junit:4.13.2'
implementation 'android.arch.lifecycle:extensions:1.1.1'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
implementation 'com.google.code.gson:gson:2.9.1'
implementation 'com.github.bumptech.glide:glide:4.13.2'
kapt 'com.github.bumptech.glide:compiler:4.13.2'
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4'
implementation platform('com.google.firebase:firebase-bom:30.3.1')
implementation 'com.firebaseui:firebase-ui-auth:8.0.1'
implementation 'com.mikhaellopez:circularimageview:4.3.0'
implementation 'com.google.android.libraries.places:places:2.6.0'
implementation 'androidx.room:room-ktx:2.4.3'
kapt 'androidx.room:room-compiler:2.4.3'
implementation 'com.firebaseui:firebase-ui-database:8.0.1'
implementation "androidx.work:work-runtime-ktx:2.7.1"
implementation 'androidx.core:core-splashscreen:1.0.0'
}