mirror of
https://github.com/dyhkwong/Exclave.git
synced 2026-06-21 20:22:50 +08:00
10 lines
246 B
Bash
Executable File
10 lines
246 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source "bin/init/env.sh"
|
|
|
|
git submodule update --init library/core/src/main/jni/*
|
|
rm -rf library/core/build/outputs/aar
|
|
./gradlew :library:core:assembleRelease || exit 1
|
|
mkdir -p app/libs
|
|
cp library/core/build/outputs/aar/* app/libs
|