mirror of
https://github.com/hmalik144/Driver.git
synced 2025-12-10 02:45:20 +00:00
47 lines
1.7 KiB
Groovy
47 lines
1.7 KiB
Groovy
apply plugin: 'com.android.application'
|
|
apply plugin: 'kotlin-android'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
defaultConfig {
|
|
applicationId "h_mal.appttude.com.driver"
|
|
minSdkVersion 24
|
|
targetSdkVersion 28
|
|
versionCode 5
|
|
versionName "1.5"
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation 'com.android.support:appcompat-v7:28.0.0'
|
|
implementation 'com.android.support:design:28.0.0'
|
|
implementation 'com.android.support:cardview-v7:28.0.0'
|
|
implementation 'com.android.support:support-v4:28.0.0'
|
|
implementation 'com.android.support:exifinterface:28.0.0'
|
|
implementation 'com.google.android.gms:play-services-auth:15.0.1'
|
|
implementation 'com.google.firebase:firebase-core:16.0.1'
|
|
implementation 'com.google.firebase:firebase-auth:16.0.1'
|
|
implementation 'com.google.firebase:firebase-storage:16.0.1'
|
|
implementation 'com.google.firebase:firebase-database:16.0.1'
|
|
implementation 'com.github.chrisbanes:PhotoView:2.1.0'
|
|
implementation 'com.squareup.picasso:picasso:2.71828'
|
|
implementation 'com.google.code.gson:gson:2.3.1'
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'com.android.support.test:runner:1.0.2'
|
|
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
|
|
androidTestImplementation 'com.android.support.test:rules:1.0.2'
|
|
}
|
|
|
|
apply plugin: 'com.google.gms.google-services'
|
|
repositories {
|
|
mavenCentral()
|
|
}
|