Skip to content

Commit

Permalink
update sing-box to v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maskedeken committed Mar 24, 2023
1 parent d918a68 commit 7610b80
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
8 changes: 2 additions & 6 deletions app_singbox/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,7 @@ setupAll()
android {
defaultConfig {
applicationId = "moe.matsuri.plugin.singbox"
versionCode = 5
versionName = "v1.2-beta10"
splits.abi {
reset()
include("arm64-v8a", "x86_64")
}
versionCode = 6
versionName = "v1.2.0"
}
}
9 changes: 7 additions & 2 deletions download.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,15 @@ download_xray() {
}

download_singbox() {
VERSION="1.2.0"
mkdir_libs "app_singbox/libs"
curl -Lso singbox.tar.gz "https://github.com/SagerNet/sing-box/releases/download/v1.2-beta10/sing-box-1.2-beta10-android-arm64.tar.gz"
curl -Lso singbox.tar.gz "https://github.com/SagerNet/sing-box/releases/download/v$VERSION/sing-box-$VERSION-android-arm64.tar.gz"
unzip_singbox arm64-v8a
curl -Lso singbox.tar.gz "https://github.com/SagerNet/sing-box/releases/download/v1.2-beta10/sing-box-1.2-beta10-android-amd64.tar.gz"
curl -Lso singbox.tar.gz "https://github.com/SagerNet/sing-box/releases/download/v$VERSION/sing-box-$VERSION-android-armv7.tar.gz"
unzip_singbox armeabi-v7a
curl -Lso singbox.tar.gz "https://github.com/SagerNet/sing-box/releases/download/v$VERSION/sing-box-$VERSION-android-386.tar.gz"
unzip_singbox x86
curl -Lso singbox.tar.gz "https://github.com/SagerNet/sing-box/releases/download/v$VERSION/sing-box-$VERSION-android-amd64.tar.gz"
unzip_singbox x86_64
}

Expand Down

0 comments on commit 7610b80

Please sign in to comment.