mirror of
https://github.com/status-im/realm-js.git
synced 2025-02-11 06:06:25 +00:00
34 lines
585 B
Plaintext
34 lines
585 B
Plaintext
|
buildscript {
|
||
|
repositories {
|
||
|
jcenter()
|
||
|
}
|
||
|
dependencies {
|
||
|
classpath 'com.android.tools.build:gradle:1.3.1'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
allprojects {
|
||
|
repositories {
|
||
|
mavenLocal()
|
||
|
jcenter()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
apply plugin: 'com.android.library'
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 23
|
||
|
buildToolsVersion "23.0.1"
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion 16
|
||
|
targetSdkVersion 22
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
||
|
compile 'org.nanohttpd:nanohttpd:2.2.0'
|
||
|
compile 'com.facebook.react:react-native:0.18.0-patched'
|
||
|
}
|