Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
bannedbook committed Jun 2, 2020
1 parent 0604127 commit 5a96f42
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
8 changes: 4 additions & 4 deletions V2rayNG/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ android {
minSdkVersion 17
targetSdkVersion Integer.parseInt("$targetSdkVer")
multiDexEnabled true
versionCode 220
versionName "2.0.6"
versionCode 230
versionName "2.0.7"
}

signingConfigs {
Expand Down Expand Up @@ -60,8 +60,8 @@ android {
abi {
enable true
reset()
//include 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a' //select ABIs to build APKs for
include 'armeabi-v7a', 'arm64-v8a'
include 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a'
//include 'armeabi-v7a', 'arm64-v8a' //select ABIs to build APKs for
universalApk true //generate an additional APK that contains all the ABIs
}
}
Expand Down
Binary file modified V2rayNG/app/libs/libv2ray.aar
Binary file not shown.
8 changes: 7 additions & 1 deletion V2rayNG/app/src/main/kotlin/com/v2ray/ang/ui/MainActivity.kt
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,9 @@ class MainActivity : BaseActivity(), NavigationView.OnNavigationItemSelectedList
}

R.id.real_ping_all -> {
if (isRunning) {
Utils.stopVService(this)
}
for (k in 0 until configs.vmess.count()) {
configs.vmess[k].testResult = ""
adapter.updateConfigList()
Expand Down Expand Up @@ -322,6 +325,9 @@ class MainActivity : BaseActivity(), NavigationView.OnNavigationItemSelectedList
}

R.id.retest_invalid_servers -> {
if (isRunning) {
Utils.stopVService(this)
}
doAsync{
for (k in configs.vmess.count()-1 downTo 0) {
try {
Expand Down Expand Up @@ -700,7 +706,7 @@ class MainActivity : BaseActivity(), NavigationView.OnNavigationItemSelectedList
.observeOn(AndroidSchedulers.mainThread())
.subscribe {
if (fabProgressCircle.isShown) {
fabProgressCircle.hide()
fabProgressCircle?.hide()
}
}
} catch (e: Exception) {
Expand Down
2 changes: 1 addition & 1 deletion gitupdate.bat
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ git pull origin master
git add -A
git commit -m "update"
git push origin master
git tag -a v2.0.6 -m "release v2.0.6"
git tag -a v2.0.7 -m "release v2.0.7"
git push origin --tags
pause

0 comments on commit 5a96f42

Please sign in to comment.