2016-05-18 12:07:36 +02:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
2017-06-24 00:41:23 +02:00
|
|
|
compileSdkVersion 25
|
2016-07-27 02:30:48 +02:00
|
|
|
buildToolsVersion "23.0.3"
|
2016-05-18 12:07:36 +02:00
|
|
|
|
|
|
|
defaultConfig {
|
2016-08-26 01:04:38 +02:00
|
|
|
minSdkVersion 16
|
2017-06-24 00:41:23 +02:00
|
|
|
targetSdkVersion 25
|
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'
|
2017-06-24 00:41:23 +02:00
|
|
|
compile 'id.zelory:compressor:2.0.0'
|
2016-05-18 12:07:36 +02:00
|
|
|
}
|