-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
79 lines (62 loc) · 2.75 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
plugins {
id 'com.android.application'
}
android {
namespace 'com.example.banhang_khach'
compileSdk 33
defaultConfig {
applicationId "com.example.banhang_khach"
minSdk 24
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
}
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.9.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'com.google.firebase:firebase-auth-ktx:22.1.2'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
implementation platform('com.google.firebase:firebase-bom:32.0.0')
implementation("com.google.firebase:firebase-database")
implementation 'com.facebook.android:facebook-android-sdk:latest.release'
implementation("com.google.firebase:firebase-auth")
implementation 'com.github.denzcoskun:ImageSlideshow:0.1.2'
implementation 'com.google.firebase:firebase-storage'
implementation("com.google.android.gms:play-services-auth:20.7.0")
implementation 'com.intuit.sdp:sdp-android:1.1.0'
implementation 'de.hdodenhof:circleimageview:3.1.0'
implementation 'com.github.bumptech.glide:glide:4.13.2'
annotationProcessor 'com.github.bumptech.glide:compiler:4.13.2'
implementation("com.google.android.gms:play-services-auth:20.7.0")
//thanh toán momo
implementation 'com.github.momo-wallet:mobile-sdk:1.0.7'
//Thanh toán zalopay
// implementation fileTree(dir: 'D:\\thanhtoan_zalopay', include: ['*.aar', '*.jar'], exclude: [])
implementation files('src/main/libs/zpdk-release-v3.1.aar')
//Thanh toans VNpay
// implementation 'vn.vnpay.android:sdk:1.0.0'
implementation 'com.google.code.gson:gson:2.8.5'
implementation group: 'com.squareup.okhttp3', name: 'okhttp', version: '3.14.1'
implementation files('src/main/libs/merchant-1.0.25.aar')
implementation 'javax.servlet:javax.servlet-api:3.1.0'
implementation("com.google.firebase:firebase-messaging")
implementation("com.squareup.okhttp3:okhttp:4.10.0")
implementation 'com.squareup.retrofit2:retrofit:2.9.0'
implementation 'com.squareup.retrofit2:converter-gson:2.1.0'
}
apply plugin: 'com.google.gms.google-services'