apply plugin: 'com.android.library'


android {
    compileSdkVersion rootProject.ext.compileSdkVersion
    defaultConfig {
        minSdkVersion rootProject.ext.minSdkVersion
        targetSdkVersion rootProject.ext.targetSdkVersion
        versionCode 1
        versionName "1.0"
    }
}


dependencies {
    implementation 'com.android.support:appcompat-v7:$rootProject.ext.targetSdkVersion'
    implementation project(':hotspotmanager')
    implementation ('com.facebook.react:react-native:+')
    implementation ("com.google.android.gms:play-services-location:15.0.1")
    implementation ("com.google.android.gms:play-services-nearby:16.0.0")
    implementation 'org.altbeacon:android-beacon-library:2+'
}
