12345678910111213141516171819202122232425262728293031 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 23
- buildToolsVersion "23.0.1"
- defaultConfig {
- minSdkVersion 16
- targetSdkVersion 23
- versionCode 1
- versionName "1.0"
- }
- lintOptions {
- abortOnError false
- warning 'InvalidPackage'
- }
- }
- repositories {
- maven {
- // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
- url "$rootDir/../node_modules/react-native/android"
- }
- }
- dependencies {
- compile fileTree(dir: "libs", include: ["*.jar"])
- compile 'com.facebook.react:react-native:+'
- }
|