buildscript {
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.4.1'
    }
}

apply plugin: 'com.android.library'

android {
    compileSdkVersion 28
    buildToolsVersion "28.0.3"
    defaultConfig {
        minSdkVersion 18
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
    }
    lintOptions {
        abortOnError false
    }
}

repositories {
    jcenter()
    maven { url 'https://maven.google.com' }
}

dependencies {
    implementation 'com.facebook.react:react-native:+'
    implementation 'com.estimote:proximity-sdk:1.0.3'
    implementation 'com.estimote:scanning-plugin:0.25.2'
}
