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>
pull/967/head
yangfl 5 years ago committed by Romain Vimont
parent 40c3c57613
commit 7d7f3daff2

@ -40,7 +40,7 @@ EOF
echo "Generating java from 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
echo "Compiling java sources..."

Loading…
Cancel
Save