App Center

App Center

Waldo integration with App Center requires you only to add a couple of custom build steps.

Add the following to appcenter-post-clone.sh:

export WALDO_CLI_BIN=/usr/local/bin

bash -c "$(curl -fLs https://github.com/waldoapp/waldo-go-cli/raw/master/install-waldo.sh)"

Add the following to appcenter-post-build.sh:

WALDO_CLI_BIN=/usr/local/bin

export WALDO_UPLOAD_TOKEN=<<waldoUploadToken>>

BUILD_PATH=${APPCENTER_OUTPUT_DIRECTORY}/YourApp.apk

${WALDO_CLI_BIN}/waldo upload "$BUILD_PATH"

Make sure you use your "CI Token" (you can find it in: Sidebar > Configuration > General. We make sure tokens used in CI are only scoped to a specific app, as a result CI uploads won't work with your User token (that you can find in user menu > Account settings > Profile).