mirror of
https://github.com/syncthing/syncthing-android.git
synced 2024-11-26 14:21:16 +00:00
No more ARMv7 (fixes #206).
This commit is contained in:
parent
9d6e5b6552
commit
660b9e689e
2 changed files with 3 additions and 14 deletions
|
@ -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
|
||||
|
|
|
@ -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"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue