
buildscript {
    repositories {
        jcenter()
        google()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.2'
    }
}

apply plugin: 'com.android.library'

android {
    compileSdkVersion 27
    buildToolsVersion '27.0.3'
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    defaultConfig {
        minSdkVersion 16
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
    }
    lintOptions {
        abortOnError false
    }
}

repositories {
    mavenCentral()
    maven {
        url "https://mobility.bintray.com/sdk"
    }
    google()
}

dependencies {
    api 'com.facebook.react:react-native:+'
    def hereSdkVersion = '1.1.17'
    api "com.here.mobility.sdk:demand:$hereSdkVersion"
    api "com.here.mobility.sdk:map:$hereSdkVersion"
}
  