Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add x86 emulator support for android libs #9

Merged
merged 1 commit into from
Oct 31, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/base/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ for TARGET in $TARGETS; do
# Ignore android versions etc. build only archive and sources
# Android api will be 21
# Archive will be for both amd64 and arm64
$GOMOBILE bind --target=android/arm64,android/amd64 $X $V "${T[@]}" -o "/build/$NAME.aar" ./$PACK
$GOMOBILE bind --target=android/arm64,android/amd64,android/386 $X $V "${T[@]}" -o "/build/$NAME.aar" ./$PACK
fi
# Check and build for Linux targets
if ([ $XGOOS == "." ] || [ $XGOOS == "linux" ]) && ([ $XGOARCH == "." ] || [ $XGOARCH == "amd64" ]); then
Expand Down