conventionschedule-android/app/build.gradle

56 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 {
2021-05-22 13:54:45 +00:00
compileSdkVersion 30
2018-07-09 17:16:33 +00:00
defaultConfig {
applicationId "com.adlerosn.brasilfurfest"
minSdkVersion 21
2021-05-22 13:54:45 +00:00
targetSdkVersion 30
2021-09-06 04:29:23 +00:00
versionCode 65
versionName "2021.9.6.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2018-07-13 21:09:43 +00:00
2018-07-09 17:16:33 +00:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2021-05-22 13:54:45 +00:00
buildFeatures {
viewBinding true
}
2018-07-09 17:16:33 +00:00
}
dependencies {
2021-09-06 04:29:23 +00:00
implementation fileTree(dir: '../libs', include: ['*.jar', '*.aar'])
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.5.30'
implementation 'org.jetbrains.kotlin:kotlin-reflect:1.5.30'
2019-12-03 01:29:27 +00:00
implementation 'androidx.vectordrawable:vectordrawable-animated:1.1.0'
2021-09-06 04:29:23 +00:00
implementation 'androidx.appcompat:appcompat:1.3.1'
implementation 'com.google.android.material:material:1.4.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
2021-09-06 04:29:23 +00:00
implementation 'androidx.core:core-ktx:1.6.0'
implementation 'androidx.media:media:1.4.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.0'
2021-05-22 13:54:45 +00:00
// implementation 'org.jetbrains.anko:anko-commons:0.10.5'
implementation 'com.google.code.gson:gson:2.8.6'
2021-05-22 13:54:45 +00:00
implementation 'com.brandongogetap:stickyheaders:0.6.2'
implementation 'com.github.chuross:expandable-layout:1.0.5'
2020-03-08 18:51:23 +00:00
// implementation 'com.github.shalskar:PeekAndPop:1.1.0'
2018-12-12 04:30:34 +00:00
implementation 'com.github.vihtarb:tooltip:0.2.0'
2021-09-06 04:29:23 +00:00
// implementation 'com.jsibbold:zoomage:1.3.1'
2021-05-22 13:54:45 +00:00
// implementation 'androidmads.library.qrgenearator:QRGenearator:1.0.4'
implementation 'com.journeyapps:zxing-android-embedded:3.3.0'
implementation 'com.google.zxing:core:3.3.0'
}