conventionschedule-android/app/build.gradle

62 lines
2.1 KiB
Groovy
Raw Normal View History

2018-07-09 17:16:33 +00:00
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
2021-05-22 13:54:45 +00:00
apply plugin: 'kotlin-parcelize'
//apply plugin: 'kotlin-android-extensions'
2018-07-09 17:16:33 +00:00
android {
compileSdkVersion 34
2018-07-09 17:16:33 +00:00
defaultConfig {
2023-01-24 01:30:48 +00:00
applicationId "app.furmeet.events.bff"
2018-07-09 17:16:33 +00:00
minSdkVersion 21
targetSdkVersion 34
2023-08-12 00:43:18 +00:00
versionCode 75
versionName "2023.8.11.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2018-07-09 17:16:33 +00:00
}
buildTypes {
debug {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
2018-07-09 17:16:33 +00:00
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2021-05-22 13:54:45 +00:00
buildFeatures {
viewBinding true
}
2023-01-24 01:30:48 +00:00
namespace 'app.furmeet.events.bff'
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
2018-07-09 17:16:33 +00:00
}
dependencies {
2021-09-06 04:29:23 +00:00
testImplementation 'junit:junit:4.13.2'
2023-01-23 22:52:15 +00:00
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
implementation 'org.jetbrains.kotlin:kotlin-reflect:1.7.21'
2019-12-03 01:29:27 +00:00
implementation 'androidx.vectordrawable:vectordrawable-animated:1.1.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
2023-05-17 23:54:50 +00:00
implementation 'com.google.android.material:material:1.9.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
2023-05-17 23:54:50 +00:00
implementation 'androidx.core:core-ktx:1.10.1'
implementation 'androidx.media:media:1.6.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation 'com.google.code.gson:gson:2.8.9'
2021-05-22 13:54:45 +00:00
implementation 'com.brandongogetap:stickyheaders:0.6.2'
implementation 'com.github.chuross:expandable-layout:1.0.5'
2018-12-12 04:30:34 +00:00
implementation 'com.github.vihtarb:tooltip:0.2.0'
implementation 'com.jsibbold:zoomage:1.3.1'
2021-05-22 13:54:45 +00:00
implementation 'com.journeyapps:zxing-android-embedded:3.3.0'
implementation 'com.google.zxing:core:3.3.0'
}