mirror of
https://github.com/Nezumi-2711/PRM392.git
synced 2026-09-22 20:00:53 +00:00
97 lines
3.6 KiB
Groovy
97 lines
3.6 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
android {
|
|
compileSdk 32
|
|
|
|
defaultConfig {
|
|
applicationId "com.waterbase.foodify"
|
|
minSdk 23
|
|
targetSdk 30
|
|
versionCode 1
|
|
versionName "98.0"
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
buildFeatures {
|
|
viewBinding true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
|
|
implementation 'com.github.mancj:MaterialSearchBar:0.8.5'
|
|
implementation 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
|
|
implementation 'com.readystatesoftware.sqliteasset:sqliteassethelper:+'
|
|
implementation 'com.cepheuen.elegant-number-button:lib:1.0.2'
|
|
implementation 'androidx.appcompat:appcompat:1.4.1'
|
|
implementation 'com.google.android.material:material:1.6.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.1'
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1'
|
|
implementation 'androidx.navigation:navigation-fragment:2.3.5'
|
|
implementation 'androidx.navigation:navigation-ui:2.3.5'
|
|
implementation fileTree(dir: 'D:\\ZaloPay', include: ['*.aar', '*.jar'], exclude: [])
|
|
implementation fileTree(dir: 'D:\\ZaloPay', include: ['*.aar', '*.jar'], exclude: [])
|
|
testImplementation 'junit:junit:4.13.2'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
|
|
|
//Add library
|
|
implementation 'com.google.firebase:firebase-messaging:20.0.0'
|
|
implementation 'com.google.firebase:firebase-core:20.0.0'
|
|
implementation 'com.google.firebase:firebase-database:20.0.0'
|
|
implementation 'com.google.firebase:firebase-auth:20.0.0'
|
|
// implementation 'com.google.android.gms:play-services:12.0.1'
|
|
implementation 'com.google.android.gms:play-services-maps:18.0.2'
|
|
implementation 'com.google.android.gms:play-services-location:20.0.0'
|
|
|
|
implementation 'com.google.android.gms:play-services-auth:20.0.0'
|
|
|
|
implementation 'com.github.jd-alexander:android-flat-button:v1.1'
|
|
implementation 'com.rengwuxian.materialedittext:library:2.1.4'
|
|
implementation 'com.stepstone.apprating:app-rating:2.0.0'
|
|
implementation 'com.squareup.retrofit2:retrofit:2.7.1'
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.7.1'
|
|
implementation 'com.squareup.retrofit2:converter-scalars:2.7.1'
|
|
implementation 'com.github.d-max:spots-dialog:0.7@aar'
|
|
|
|
implementation 'com.squareup.picasso:picasso:2.5.2'
|
|
implementation 'com.firebaseui:firebase-ui-database:3.2.0'
|
|
implementation 'io.paperdb:paperdb:2.1'
|
|
implementation 'com.github.rey5137:material:1.2.4'
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp:4.9.2'
|
|
implementation("commons-codec:commons-codec:1.14")
|
|
implementation fileTree(dir: 'D:\\ZaloPay', includes: ['*.aar', '*.jar'], excludes: [])
|
|
|
|
implementation 'io.github.inflationx:calligraphy3:3.1.1'
|
|
implementation 'io.github.inflationx:viewpump:2.0.3'
|
|
|
|
implementation 'com.karumi:dexter:6.2.3'
|
|
|
|
//CounterFAB
|
|
implementation 'com.github.andremion:counterfab:1.2.2'
|
|
|
|
//Slider
|
|
implementation 'com.nineoldandroids:library:2.4.0'
|
|
implementation 'com.daimajia.slider:library:1.1.5@aar'
|
|
implementation "androidx.browser:browser:1.3.0"
|
|
|
|
implementation project(':appupdate')
|
|
|
|
|
|
}
|
|
|
|
apply plugin: 'com.google.gms.google-services' |