apply plugin: 'com.android.application' apply plugin: 'kotlin-android' apply plugin: 'kotlin-android-extensions' android { compileSdkVersion 29 defaultConfig { applicationId "com.adlerosn.brasilfurfest" minSdkVersion 21 targetSdkVersion 29 versionCode 22 versionName "2019.6.4.1" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) testImplementation 'junit:junit:4.12' androidTestImplementation 'androidx.test.ext:junit:1.1.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0' implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.3.31" implementation "org.jetbrains.kotlin:kotlin-reflect:1.3.31" implementation 'androidx.vectordrawable:vectordrawable-animated:1.0.0' implementation 'androidx.appcompat:appcompat:1.0.2' implementation 'com.google.android.material:material:1.0.0' implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation 'androidx.core:core:1.0.2' implementation 'androidx.media:media:1.0.1' implementation 'androidx.constraintlayout:constraintlayout:1.1.3' implementation 'org.jetbrains.anko:anko-commons:0.10.5' implementation 'com.google.code.gson:gson:2.8.5' implementation 'com.brandongogetap:stickyheaders:0.5.1' implementation 'com.github.chuross:expandable-layout:1.0.5' implementation 'com.github.shalskar:PeekAndPop:1.1.0' implementation 'com.github.vihtarb:tooltip:0.2.0' implementation 'com.jsibbold:zoomage:1.2.0' implementation 'androidmads.library.qrgenearator:QRGenearator:1.0.3' implementation 'com.journeyapps:zxing-android-embedded:3.6.0' }