Skip to content
Snippets Groups Projects
build.gradle 1.44 KiB
Newer Older
Koen's avatar
Koen committed
plugins {
    id 'com.android.library'
    id 'org.jetbrains.kotlin.android'
    id 'org.jetbrains.kotlin.plugin.serialization' version '1.8.20'
Koen's avatar
Koen committed
}

android {
    namespace 'com.futo.futopay'
    compileSdk 33

    defaultConfig {
        minSdk 24
        targetSdk 33
Koen's avatar
Koen committed

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    kotlinOptions {
        jvmTarget = '1.8'
    }
}

dependencies {
    implementation 'androidx.core:core-ktx:1.10.1'
    implementation 'androidx.appcompat:appcompat:1.6.1'
Koen's avatar
Koen committed
    implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4"
    implementation 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.1'
Koen's avatar
Koen committed
    implementation 'androidx.recyclerview:recyclerview:1.3.0'
    implementation 'com.caverock:androidsvg-aar:1.4'
Kelvin's avatar
Kelvin committed
    implementation 'com.google.code.gson:gson:2.10.1'
Koen's avatar
Koen committed
    implementation 'com.stripe:stripe-android:20.28.3'
    implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
    testImplementation 'junit:junit:4.13.2'
    androidTestImplementation 'androidx.test.ext:junit:1.1.5'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
}