No more ARMv7 (fixes #206).

This commit is contained in:
Felix Ableitner 2015-01-14 11:51:07 +01:00
parent 9d6e5b6552
commit 660b9e689e
2 changed files with 3 additions and 14 deletions

View File

@ -70,12 +70,7 @@ $GOROOT/bin/go run build.go -goos linux -goarch 386 -no-upgrade build
mv syncthing $ORIG/bin/syncthing-x86
$GOROOT/bin/go run build.go clean
# ARM-7
$GOROOT/bin/go run build.go -goos linux -goarch armv7 -no-upgrade build
mv syncthing $ORIG/bin/syncthing-armeabi-v7a
$GOROOT/bin/go run build.go clean
# ARM-5
$GOROOT/bin/go run build.go -goos linux -goarch armv5 -no-upgrade build
# ARM
$GOROOT/bin/go run build.go -goos linux -goarch arm -no-upgrade build
mv syncthing $ORIG/bin/syncthing-armeabi
$GOROOT/bin/go run build.go clean

View File

@ -67,14 +67,8 @@ android {
abiFilter "x86"
}
}
armeabi_v7a {
versionCode Integer.parseInt("3" + defaultConfig.versionCode)
ndk {
abiFilter "armeabi-v7a"
}
}
armeabi {
versionCode Integer.parseInt("2" + defaultConfig.versionCode)
versionCode Integer.parseInt("3" + defaultConfig.versionCode)
ndk {
abiFilter "armeabi"
}