build.gradle 500 Bytes
Newer Older
Gaëtan Renaudeau's avatar
Gaëtan Renaudeau committed
1 2 3 4 5 6 7 8 9 10 11 12 13
buildscript {
  repositories {
    jcenter()
  }

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

apply plugin: 'com.android.library'

android {
Kesha Antonov's avatar
Kesha Antonov committed
14 15
  compileSdkVersion 25
  buildToolsVersion "25.0.3"
Gaëtan Renaudeau's avatar
Gaëtan Renaudeau committed
16 17 18

  defaultConfig {
    minSdkVersion 16
Kesha Antonov's avatar
Kesha Antonov committed
19
    targetSdkVersion 22
Gaëtan Renaudeau's avatar
Gaëtan Renaudeau committed
20 21 22 23 24 25 26 27 28 29 30 31 32
    versionCode 1
    versionName "1.0"
  }
  lintOptions {
    abortOnError false
  }
}

repositories {
  mavenCentral()
}

dependencies {
33
  compile "com.facebook.react:react-native:+"  // From node_modules
Gaëtan Renaudeau's avatar
Gaëtan Renaudeau committed
34
}