2018-11-22 16:49:00 +00:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
maven {
|
|
|
|
url 'https://maven.google.com'
|
|
|
|
}
|
|
|
|
jcenter()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
classpath 'com.android.tools.build:gradle:3.0.1'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 26
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 18
|
|
|
|
targetSdkVersion 23
|
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
|
|
|
maven {
|
|
|
|
url 'https://maven.google.com'
|
|
|
|
}
|
|
|
|
maven { url "https://jitpack.io" }
|
|
|
|
maven {
|
|
|
|
url "$rootDir/../node_modules/react-native/android"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation 'com.facebook.react:react-native:+'
|
2018-12-17 18:32:06 +00:00
|
|
|
implementation 'com.madgag.spongycastle:core:1.58.0.0'
|
|
|
|
implementation 'com.github.status-im.status-keycard-java:android:2.0.0'
|
2018-11-22 16:49:00 +00:00
|
|
|
}
|