64 lines
1.9 KiB
Groovy
64 lines
1.9 KiB
Groovy
import groovy.json.JsonSlurper
|
|
|
|
def computeVersionName() {
|
|
// dynamically retrieve version from package.json
|
|
def slurper = new JsonSlurper()
|
|
def json = slurper.parse(file('../package.json'), "utf-8")
|
|
return json.version
|
|
}
|
|
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:2.2.+'
|
|
}
|
|
}
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
def DEFAULT_COMPILE_SDK_VERSION = 25
|
|
def DEFAULT_BUILD_TOOLS_VERSION = "25.0.2"
|
|
def DEFAULT_TARGET_SDK_VERSION = 25
|
|
|
|
android {
|
|
compileSdkVersion rootProject.hasProperty('compileSdkVersion') ? rootProject.compileSdkVersion : DEFAULT_COMPILE_SDK_VERSION
|
|
buildToolsVersion rootProject.hasProperty('buildToolsVersion') ? rootProject.buildToolsVersion : DEFAULT_BUILD_TOOLS_VERSION
|
|
|
|
defaultConfig {
|
|
minSdkVersion 16
|
|
targetSdkVersion rootProject.hasProperty('targetSdkVersion') ? rootProject.targetSdkVersion : DEFAULT_TARGET_SDK_VERSION
|
|
versionCode 1
|
|
versionName computeVersionName()
|
|
}
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
url "$projectDir/../Example/node_modules/react-native/android"
|
|
}
|
|
maven {
|
|
url "$projectDir/../../react-native/android"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile "com.facebook.react:react-native:+" // From node_modules
|
|
|
|
testCompile "junit:junit:4.10"
|
|
testCompile "org.assertj:assertj-core:1.7.0"
|
|
testCompile "org.robolectric:robolectric:3.3.2"
|
|
|
|
testCompile "org.easytesting:fest-assert-core:${FEST_ASSERT_CORE_VERSION}"
|
|
testCompile "org.powermock:powermock-api-mockito:${POWERMOCK_VERSION}"
|
|
testCompile "org.powermock:powermock-module-junit4-rule:${POWERMOCK_VERSION}"
|
|
testCompile "org.powermock:powermock-classloading-xstream:${POWERMOCK_VERSION}"
|
|
testCompile "org.mockito:mockito-core:${MOCKITO_CORE_VERSION}"
|
|
}
|