-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
98 lines (73 loc) · 3.15 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
98
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
id 'com.google.gms.google-services'
}
android {
namespace 'com.example.myapplication'
compileSdk 33
defaultConfig {
applicationId "com.example.myapplication"
minSdk 21
targetSdk 33
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'
}
buildFeatures {
viewBinding true
}
}
dependencies {
implementation 'androidx.core:core-ktx:1.9.0'
implementation 'androidx.appcompat:appcompat:1.6.0'
implementation 'com.google.android.material:material:1.7.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.5.1'
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
implementation 'androidx.navigation:navigation-fragment-ktx:2.5.3'
implementation 'androidx.navigation:navigation-ui-ktx:2.5.3'
implementation 'com.google.firebase:firebase-database:20.1.0'
implementation 'com.google.firebase:firebase-storage-ktx:20.1.0'
implementation 'com.google.firebase:firebase-database-ktx:20.1.0'
implementation files('libs\\activation.jar')
implementation files('libs\\additionnal.jar')
implementation files('libs\\mail.jar')
implementation 'com.google.firebase:firebase-auth:21.0.3'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
implementation 'com.github.ibrahimsn98:SmoothBottomBar:1.7.9'
implementation 'com.github.chrisbanes:PhotoView:2.3.0'
implementation 'org.jsoup:jsoup:1.15.3'
//Viewpager Implementation
implementation 'androidx.viewpager2:viewpager2:1.0.0'
//CircleIndicator
implementation 'me.relex:circleindicator:2.1.6'
implementation 'com.github.bumptech.glide:glide:4.13.2'
implementation 'com.github.SMehranB:GlowNeonButton:2.0.1'
implementation "com.airbnb.android:lottie:3.4.0"
implementation 'com.github.florent37:singledateandtimepicker:2.2.7'
implementation "com.github.FunkyMuse.MediaPicker:core:1.1.0"
implementation "com.github.FunkyMuse.MediaPicker:imagepicker:1.1.0"
implementation ('com.google.code.gson:gson:2.10')
implementation ('com.makeramen:roundedimageview:2.3.0')
implementation ('com.github.soroushjavdan:Android-Mandrill-Interface:master-SNAPSHOT')
//implementation 'com.github.denzcoskun:ImageSlideshow:0.1.0'
//implementation 'org.seleniumhq.selenium:selenium-java:4.7.2'
//implementation 'com.google.guava:listenablefuture:9999.0-empty-to-avoid-conflict-with-guava'
//implementation("io.github.bonigarcia:webdrivermanager:5.3.1")
}