2016-09-07 17:35:04 +00:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
2018-09-18 12:22:30 +00:00
|
|
|
def getStatusGoVersion = { ->
|
|
|
|
version = new File('../STATUS_GO_VERSION').text
|
2019-05-02 11:29:10 +00:00
|
|
|
return version.tokenize('\n').last().replaceAll("\\s","")
|
2018-09-18 12:22:30 +00:00
|
|
|
}
|
|
|
|
|
2016-09-07 17:35:04 +00:00
|
|
|
android {
|
2019-01-24 13:18:34 +00:00
|
|
|
compileSdkVersion 28
|
2016-09-07 17:35:04 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2019-01-24 13:18:34 +00:00
|
|
|
minSdkVersion 23
|
|
|
|
targetSdkVersion 28
|
2016-09-07 17:35:04 +00:00
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2019-01-24 13:18:34 +00:00
|
|
|
implementation 'com.facebook.react:react-native:+' // from node_modules
|
2018-10-09 09:53:49 +00:00
|
|
|
compile 'com.github.status-im:function:0.0.1'
|
2017-12-26 09:56:15 +00:00
|
|
|
|
2019-03-25 16:35:01 +00:00
|
|
|
implementation(group: 'status-im', name: 'status-go', version: getStatusGoVersion(), ext: 'aar')
|
2016-10-11 14:24:52 +00:00
|
|
|
}
|