This repository has been archived on 2024-03-23. You can view files and clone it, but cannot push or open issues or pull requests.
2023-03-04 05:38:56 +00:00
|
|
|
#!/bin/bash -ex
|
|
|
|
|
2023-05-31 03:50:09 +00:00
|
|
|
# SPDX-FileCopyrightText: 2023 yuzu Emulator Project
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2023-03-04 05:38:56 +00:00
|
|
|
export NDK_CCACHE="$(which ccache)"
|
|
|
|
ccache -s
|
|
|
|
|
|
|
|
BUILD_FLAVOR=mainline
|
|
|
|
|
|
|
|
cd src/android
|
|
|
|
chmod +x ./gradlew
|
|
|
|
./gradlew "assemble${BUILD_FLAVOR}Release" "bundle${BUILD_FLAVOR}Release"
|
|
|
|
|
|
|
|
ccache -s
|