Fix aidl option in build_without_gradle.sh

Debian's aidl complains about the missing path for -o option.

Signed-off-by: Romain Vimont <rom@rom1v.com>
This commit is contained in:
yangfl 2019-11-20 17:13:22 +01:00 committed by Romain Vimont
parent 40c3c57613
commit 7d7f3daff2

View file

@ -40,7 +40,7 @@ EOF
echo "Generating java from aidl..." echo "Generating java from aidl..."
cd "$SERVER_DIR/src/main/aidl" cd "$SERVER_DIR/src/main/aidl"
"$ANDROID_HOME/build-tools/$BUILD_TOOLS/aidl" -o "$CLASSES_DIR" \ "$ANDROID_HOME/build-tools/$BUILD_TOOLS/aidl" -o"$CLASSES_DIR" \
android/view/IRotationWatcher.aidl android/view/IRotationWatcher.aidl
echo "Compiling java sources..." echo "Compiling java sources..."