123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- apply plugin: 'com.android.library'
- apply plugin: 'kotlin-android'
- apply plugin: 'kotlin-android-extensions'
- apply plugin: 'kotlin-kapt'
- android {
- compileSdkVersion 32
- defaultConfig {
- minSdkVersion 19
- targetSdkVersion 32
- multiDexEnabled true
- vectorDrawables.useSupportLibrary = true
- testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- kotlinOptions {
- jvmTarget = JavaVersion.VERSION_1_8.toString()
- }
- lint {
- abortOnError false
- checkReleaseBuilds false
- }
- }
- dependencies {
- implementation 'androidx.appcompat:appcompat:1.4.1'
- testImplementation 'junit:junit:4.12'
- androidTestImplementation 'androidx.test.ext:junit:1.1.3'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
- implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
- implementation 'io.paperdb:paperdb:2.6'
- //Runtime permissions
- implementation 'com.afollestad.assent:core:3.0.0-RC4'
- implementation 'com.android.support:design:32.0.0'
- implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
- }
- repositories {
- mavenCentral()
- }
|