apply plugin: 'com.android.library'

android {
    compileSdkVersion 30

    defaultConfig {
        minSdkVersion 21
        targetSdkVersion 30
        versionCode 2
        versionName "1.6"
    }

    compileOptions {
        sourceCompatibility 1.8
        targetCompatibility 1.8
    }
}

dependencies {
    implementation "com.facebook.react:react-native:+"
    implementation "com.pointzi:pointzi:2.+"
}

allprojects {
    repositories {
        mavenLocal()
        jcenter()
        maven {
            url "https://repo.pointzi.com/sdk/pointzi"
        }
    }
}