2019-10-30 01:46:35 +08:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# This script generates the scrcpy binary "manually" (without gradle).
|
|
|
|
#
|
|
|
|
# Adapt Android platform and build tools versions (via ANDROID_PLATFORM and
|
|
|
|
# ANDROID_BUILD_TOOLS environment variables).
|
|
|
|
#
|
|
|
|
# Then execute:
|
|
|
|
#
|
|
|
|
# BUILD_DIR=my_build_dir ./build_without_gradle.sh
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2019-11-18 21:30:21 +08:00
|
|
|
SCRCPY_VERSION_NAME=1.10
|
|
|
|
|
2019-10-30 01:46:35 +08:00
|
|
|
PLATFORM=${ANDROID_PLATFORM:-29}
|
|
|
|
BUILD_TOOLS=${ANDROID_BUILD_TOOLS:-29.0.2}
|
|
|
|
|
|
|
|
BUILD_DIR="$(realpath ${BUILD_DIR:-build_manual})"
|
|
|
|
CLASSES_DIR="$BUILD_DIR/classes"
|
|
|
|
SERVER_DIR=$(dirname "$0")
|
2019-10-31 06:40:10 +08:00
|
|
|
SERVER_BINARY=scrcpy-server
|
2019-10-30 01:46:35 +08:00
|
|
|
|
|
|
|
echo "Platform: android-$PLATFORM"
|
|
|
|
echo "Build-tools: $BUILD_TOOLS"
|
|
|
|
echo "Build dir: $BUILD_DIR"
|
|
|
|
|
|
|
|
rm -rf "$CLASSES_DIR" "$BUILD_DIR/$SERVER_BINARY" classes.dex
|
|
|
|
mkdir -p "$CLASSES_DIR/com/genymobile/scrcpy"
|
|
|
|
|
|
|
|
<< EOF cat > "$CLASSES_DIR/com/genymobile/scrcpy/BuildConfig.java"
|
|
|
|
package com.genymobile.scrcpy;
|
|
|
|
|
|
|
|
public final class BuildConfig {
|
|
|
|
public static final boolean DEBUG = false;
|
2019-11-18 21:30:21 +08:00
|
|
|
public static final String VERSION_NAME = "$SCRCPY_VERSION_NAME";
|
2019-10-30 01:46:35 +08:00
|
|
|
}
|
|
|
|
EOF
|
|
|
|
|
|
|
|
echo "Generating java from aidl..."
|
|
|
|
cd "$SERVER_DIR/src/main/aidl"
|
|
|
|
"$ANDROID_HOME/build-tools/$BUILD_TOOLS/aidl" -o "$CLASSES_DIR" \
|
|
|
|
android/view/IRotationWatcher.aidl
|
|
|
|
|
|
|
|
echo "Compiling java sources..."
|
|
|
|
cd ../java
|
|
|
|
javac -bootclasspath "$ANDROID_HOME/platforms/android-$PLATFORM/android.jar" \
|
|
|
|
-cp "$CLASSES_DIR" -d "$CLASSES_DIR" -source 1.8 -target 1.8 \
|
|
|
|
com/genymobile/scrcpy/*.java \
|
|
|
|
com/genymobile/scrcpy/wrappers/*.java
|
|
|
|
|
|
|
|
echo "Dexing..."
|
|
|
|
cd "$CLASSES_DIR"
|
|
|
|
"$ANDROID_HOME/build-tools/$BUILD_TOOLS/dx" --dex \
|
|
|
|
--output "$BUILD_DIR/classes.dex" \
|
|
|
|
android/view/*.class \
|
|
|
|
com/genymobile/scrcpy/*.class \
|
|
|
|
com/genymobile/scrcpy/wrappers/*.class
|
|
|
|
|
|
|
|
echo "Archiving..."
|
|
|
|
cd "$BUILD_DIR"
|
|
|
|
jar cvf "$SERVER_BINARY" classes.dex
|
|
|
|
rm -rf classes.dex classes
|
|
|
|
|
2019-10-31 06:40:10 +08:00
|
|
|
echo "Server generated in $BUILD_DIR/$SERVER_BINARY"
|