mirror of
https://github.com/hmalik144/day_left_kotlin.git
synced 2025-12-10 03:05:24 +00:00
51 lines
2.0 KiB
Groovy
51 lines
2.0 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
apply plugin: 'kotlin-android'
|
|
|
|
apply plugin: 'kotlin-android-extensions'
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
defaultConfig {
|
|
applicationId "com.appttude.h_mal.days_left_kotlin"
|
|
minSdkVersion 23
|
|
targetSdkVersion 28
|
|
versionCode 1
|
|
versionName "1.0"
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
|
implementation 'androidx.appcompat:appcompat:1.0.0'
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
|
|
implementation 'androidx.vectordrawable:vectordrawable:1.0.0'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'com.google.android.gms:play-services-auth:17.0.0'
|
|
implementation 'com.google.firebase:firebase-core:17.2.0'
|
|
implementation 'com.google.firebase:firebase-auth:19.1.0'
|
|
implementation 'com.google.firebase:firebase-storage:19.1.0'
|
|
implementation 'com.google.firebase:firebase-database:19.1.0'
|
|
implementation 'com.firebaseui:firebase-ui-database:1.1.1'
|
|
implementation 'com.google.firebase:firebase-functions:19.0.1'
|
|
implementation 'com.google.firebase:firebase-analytics:17.2.0'
|
|
implementation 'com.google.code.gson:gson:2.3.1'
|
|
implementation 'com.squareup.picasso:picasso:2.71828'
|
|
implementation 'androidx.annotation:annotation:1.1.0'
|
|
implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0'
|
|
testImplementation 'junit:junit:4.12'
|
|
androidTestImplementation 'androidx.test:runner:1.1.0'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0'
|
|
}
|
|
|
|
apply plugin: 'com.google.gms.google-services'
|