[build/ci] update buddybuild postclone script & build tools version

This commit is contained in:
Salakar 2017-06-22 14:35:23 +01:00
parent f75f1380b8
commit 524d00d1b3
2 changed files with 3 additions and 2 deletions

View File

@ -17,7 +17,7 @@ apply plugin: 'com.android.library'
android {
compileSdkVersion 25
buildToolsVersion "23.0.3"
buildToolsVersion "25.0.2"
defaultConfig {
minSdkVersion 16
targetSdkVersion 26

View File

@ -1,7 +1,8 @@
#!/usr/bin/env bash
# Copy firebase lib into tests directory
cp -R $(node --eval "console.log(require('path').resolve('./lib'));")/* $(node --eval "console.log(require('path').resolve('./tests/firebase'));")/
mkdir tests/firebase
cp -R lib/* tests/firebase/*
# Install /tests npm packages
cd tests && npm install