1
+ apply plugin : ' com.android.application'
2
+
3
+ android {
4
+ compileSdkVersion 28
5
+ buildToolsVersion " 28.0.3"
6
+
7
+ defaultConfig {
8
+ applicationId " com.shubham.fintech"
9
+ minSdkVersion 17
10
+ targetSdkVersion 28
11
+ versionCode 1
12
+ versionName " 1.0.0"
13
+ }
14
+ buildTypes {
15
+ release {
16
+ minifyEnabled false
17
+ proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
18
+ }
19
+ }
20
+ }
21
+
22
+ dependencies {
23
+ implementation fileTree(include : [' *.jar' ], dir : ' libs' )
24
+ implementation project(' :wowoviewpager' )
25
+ implementation ' com.tbuonomo.andrui:viewpagerdotsindicator:3.0.3'
26
+ implementation ' com.android.support:multidex:1.0.3'
27
+ implementation ' com.android.support:appcompat-v7:28.0.0'
28
+ implementation ' com.android.support.constraint:constraint-layout:1.1.3'
29
+ implementation ' com.android.support:support-v4:28.0.0'
30
+ implementation ' com.android.support:design:28.0.0'
31
+ implementation ' com.android.support:support-annotations:28.0.0'
32
+ implementation ' androidx.constraintlayout:constraintlayout:1.1.3'
33
+ testImplementation ' junit:junit:4.12'
34
+ testImplementation ' org.assertj:assertj-core:3.9.1'
35
+ testImplementation ' org.mockito:mockito-core:2.15.0'
36
+ androidTestImplementation ' com.android.support.test:runner:1.0.2'
37
+ androidTestImplementation ' com.android.support.test.espresso:espresso-core:3.0.2'
38
+ implementation ' com.huxq17.android:SwipeCardsView:1.3.4'
39
+ implementation ' com.github.hajiyevelnur92:intentanimation:1.0'
40
+ // to load pictures
41
+ implementation ' com.squareup.picasso:picasso:2.71828'
42
+ implementation ' com.squareup.okhttp:okhttp:2.7.5'
43
+
44
+ // if possible image cropping functionality
45
+ implementation ' com.theartofdev.edmodo:android-image-cropper:2.7.0'
46
+
47
+ // directly getting circular image
48
+ implementation ' de.hdodenhof:circleimageview:3.0.0'
49
+
50
+ // to load images even offline and fast while storing in a compressed format
51
+ implementation ' id.zelory:compressor:2.1.0'
52
+
53
+ // if used for zoom effect image
54
+ implementation ' com.github.chrisbanes:PhotoView:2.1.4'
55
+
56
+ implementation ' com.squareup.retrofit2:retrofit:2.5.0'
57
+ implementation ' com.squareup.retrofit2:converter-gson:2.5.0'
58
+
59
+ // to get dialog boxes in spots loading design
60
+ implementation ' com.github.d-max:spots-dialog:1.1@aar'
61
+ // to convert json into object and vice-versa using google gson
62
+ implementation ' com.google.code.gson:gson:2.8.5'
63
+ // for caches
64
+ implementation ' io.paperdb:paperdb:2.5'
65
+
66
+ // diagonal layout
67
+ implementation ' com.github.florent37:diagonallayout:1.0.7'
68
+ // animate image view
69
+ implementation ' com.flaviofaria:kenburnsview:1.0.7'
70
+ // Using Relativetimetextview Custom Textview
71
+ implementation ' com.github.curioustechizen.android-ago:library:1.3.4'
72
+ implementation ' com.felipecsl:gifimageview:2.1.0'
73
+ implementation ' commons-io:commons-io:2.4'
74
+ // firebase if used further
75
+
76
+ implementation ' com.google.firebase:firebase-core:16.0.9'
77
+ implementation ' com.google.firebase:firebase-database:17.0.0'
78
+ implementation ' com.google.firebase:firebase-firestore:19.0.0'
79
+ implementation ' com.google.android.gms:play-services-auth:16.0.1'
80
+ implementation ' com.google.firebase:firebase-storage:17.0.0'
81
+ implementation ' com.google.firebase:firebase-auth:17.0.0'
82
+ implementation ' com.firebaseui:firebase-ui-database:5.0.0'
83
+ implementation ' com.firebaseui:firebase-ui-auth:5.0.0'
84
+ implementation ' com.miguelcatalan:materialsearchview:1.4.0'
85
+ implementation ' com.karumi:dexter:4.2.0'
86
+ implementation ' com.rengwuxian.materialedittext:library:2.1.4'
87
+ implementation ' com.chaos.view:pinview:1.3.2'
88
+
89
+ }
90
+
91
+ apply plugin : ' com.google.gms.google-services'
0 commit comments