mirror of
https://github.com/status-im/status-react.git
synced 2025-01-10 02:56:07 +00:00
de161c4412
* Upgrade status-go to bugfix-no-messaging-rinkeby-gd04e667-12 (geth 1.7 rebase) * [bug] fix #2089 and #2098 with geth update with geth 1.7 addresses are passed with 0x prefix and mix of lower/upper cases update the normalize hex function so that addresses are always without prefix and entirely lower-cased.
21 lines
500 B
Groovy
21 lines
500 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 24
|
|
buildToolsVersion "23.0.1"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 18
|
|
targetSdkVersion 23
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile 'com.facebook.react:react-native:+'
|
|
compile 'com.instabug.library:instabug:3+'
|
|
compile 'status-im:function:0.0.1'
|
|
compile(group: 'status-im', name: 'status-go', version: 'bugfix-no-messaging-rinkeby-gd04e667-12', ext: 'aar')
|
|
}
|