20 lines
369 B
Groovy
Raw Normal View History

2016-05-18 12:07:36 +02:00
apply plugin: 'com.android.library'
android {
compileSdkVersion 23
2016-07-27 02:30:48 +02:00
buildToolsVersion "23.0.3"
2016-05-18 12:07:36 +02:00
defaultConfig {
minSdkVersion 16
targetSdkVersion 23
2016-05-18 12:07:36 +02:00
versionCode 1
}
lintOptions {
abortOnError false
}
}
dependencies {
2016-07-27 02:30:48 +02:00
compile 'com.facebook.react:react-native:+'
2016-09-11 16:31:51 +02:00
compile 'com.yalantis:ucrop:2.2.0-native'
2016-05-18 12:07:36 +02:00
}