add mvnrepository.com for gradle

Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
Jakub Sokołowski 2018-12-10 13:09:11 +01:00
parent afc368b1b0
commit 411a74e040
No known key found for this signature in database
GPG Key ID: 4EF064D0E6D63020
6 changed files with 3 additions and 12 deletions

Binary file not shown.

Binary file not shown.

View File

@ -2,6 +2,7 @@
buildscript {
repositories {
flatDir { dirs "libs", "${rootDir}/app/libs" }
google()
jcenter()
}

View File

@ -28,4 +28,4 @@ STATUS_RELEASE_KEY_PASSWORD=password
# Workaround for issue https://github.com/facebook/react-native/issues/16906 (TODO: fixed in 0.57.3, remove once we upgrade react-native)
android.enableAapt2=false
org.gradle.jvmargs=-Xmx4608M
org.gradle.jvmargs=-Xmx8704M

View File

@ -29,7 +29,7 @@ def podUpdate() {
sh "touch ${lockFile}"
sh 'pod update --silent --no-ansi'
} finally {
sh "rm ${lockFile}"
sh "rm -f ${lockFile}"
}
}

View File

@ -28,19 +28,9 @@ set(CONFIGURE_SCRIPT build-status-go.sh)
file(STRINGS "../../../STATUS_GO_VERSION" STATUS_GO_VERSION)
# custom status-go builds are identified by '{date}-{time}-{commit}'
if ("${STATUS_GO_VERSION}" MATCHES "[0-9][0-9][0-9][0-9][0-9][0-9]-[0-9][0-9][0-9][0-9][0-9][0-9]-([0-9a-zA-Z]+)")
set(STATUS_GO_TAG ${CMAKE_MATCH_1})
else()
set(STATUS_GO_TAG ${STATUS_GO_VERSION})
endif()
ExternalProject_Add(StatusGo_ep
PREFIX ${StatusGo_PREFIX}
SOURCE_DIR ${StatusGo_SOURCE_DIR}
GIT_REPOSITORY https://github.com/status-im/status-go.git
GIT_TAG ${STATUS_GO_TAG}
GIT_SHALLOW true
URL https://status-go.ams3.digitaloceanspaces.com/status-go-desktop-${STATUS_GO_VERSION}.zip
https://github.com/status-im/status-go/archive/${STATUS_GO_VERSION}.zip
BUILD_BYPRODUCTS ${StatusGo_STATIC_LIB}