mirror of
https://github.com/mollyim/ringrtc.git
synced 2025-05-13 05:40:39 +01:00

This should still be consistent with the previous behavior, down to the output aar paths and support for Maven. Some highlights: - Some Gradle files move to the top level of the repository so IDEs can pick them up when opening the repo root. - javadoc is now handled through Gradle (though build-javadoc still exists as a thin wrapper). - The "dependencies" we were pulling down weren't really needed at all.
15 lines
294 B
Bash
15 lines
294 B
Bash
#!/bin/sh
|
|
|
|
#
|
|
# Copyright 2019-2021 Signal Messenger, LLC
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
#
|
|
|
|
# Allow non-exported environment variables
|
|
# shellcheck disable=SC2034
|
|
|
|
# Android specific environment variables
|
|
|
|
prepare_workspace_platform() {
|
|
echo "Preparing workspace for Android..."
|
|
}
|