apply plugin: 'com.android.library'

android {
    compileSdkVersion project.hasProperty('compileSdkVersion') ? project.compileSdkVersion : 28
    buildToolsVersion project.hasProperty('buildToolsVersion') ? project.buildToolsVersion : "28.0.3"

    defaultConfig {
        minSdkVersion project.hasProperty('minSdkVersion') ? project.minSdkVersion : 16
        targetSdkVersion project.hasProperty('targetSdkVersion') ? project.targetSdkVersion : 28
        versionCode 1
        versionName "1.0"
    }
}

dependencies {
    implementation 'com.facebook.react:react-native:+'
    implementation 'com.appsee:appsee-android:2.6.0'
}
