Skip to content

Commit

Permalink
remove google from test
Browse files Browse the repository at this point in the history
  • Loading branch information
hiddify-com committed May 1, 2023
1 parent beb8ae0 commit d59d78e
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions V2rayNG/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ android {
minSdkVersion 21
targetSdkVersion Integer.parseInt("$targetSdkVer")
multiDexEnabled true
versionCode 5100105 //hiddify
versionName "1.01.5" //hiddify
versionCode 5100106 //hiddify
versionName "1.01.6" //hiddify
}

buildTypes {
Expand Down
32 changes: 16 additions & 16 deletions V2rayNG/app/release/output-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@
"type": "UNIVERSAL",
"filters": [],
"attributes": [],
"versionCode": 5100105,
"versionName": "1.01.5",
"versionCode": 5100106,
"versionName": "1.01.6",
"outputFile": "HiddifyNG_null.apk"
},
{
"type": "ONE_OF_MANY",
"filters": [
{
"filterType": "ABI",
"value": "x86"
"value": "x86_64"
}
],
"attributes": [],
"versionCode": 8100105,
"versionName": "1.01.5",
"outputFile": "HiddifyNG_x86.apk"
"versionCode": 9100106,
"versionName": "1.01.6",
"outputFile": "HiddifyNG_x86_64.apk"
},
{
"type": "ONE_OF_MANY",
Expand All @@ -37,35 +37,35 @@
}
],
"attributes": [],
"versionCode": 7100105,
"versionName": "1.01.5",
"versionCode": 7100106,
"versionName": "1.01.6",
"outputFile": "HiddifyNG_arm64-v8a.apk"
},
{
"type": "ONE_OF_MANY",
"filters": [
{
"filterType": "ABI",
"value": "x86_64"
"value": "armeabi-v7a"
}
],
"attributes": [],
"versionCode": 9100105,
"versionName": "1.01.5",
"outputFile": "HiddifyNG_x86_64.apk"
"versionCode": 6100106,
"versionName": "1.01.6",
"outputFile": "HiddifyNG_armeabi-v7a.apk"
},
{
"type": "ONE_OF_MANY",
"filters": [
{
"filterType": "ABI",
"value": "armeabi-v7a"
"value": "x86"
}
],
"attributes": [],
"versionCode": 6100105,
"versionName": "1.01.5",
"outputFile": "HiddifyNG_armeabi-v7a.apk"
"versionCode": 8100106,
"versionName": "1.01.6",
"outputFile": "HiddifyNG_x86.apk"
}
],
"elementType": "File"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -487,6 +487,6 @@ data class V2rayConfig(
data class BalancerBean(var tag: String?=null,var selector:List<String>?=null, var strategy:BalancerStrategyBean?=null)
data class BalancerStrategyBean(var type: String?=null,var settings: BalancerStrategySetting?=null)
open class BalancerStrategySetting{}
data class OptimalBalancerStrategySetting(var timeout: Int?=10000,var interval: Int?=60000*10, var url: String?="https://about.google", var count:Int?=3, var accept_little_diff:Boolean=true,val load_balancing:Boolean=false,var diff_percent:Double=0.5):BalancerStrategySetting()
data class OptimalBalancerStrategySetting(var timeout: Int?=10000,var interval: Int?=60000*10, var url: String?="https://cp.cloudflare.com", var count:Int?=3, var accept_little_diff:Boolean=true,val load_balancing:Boolean=false,var diff_percent:Double=0.5):BalancerStrategySetting()

}
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ object SpeedtestUtil {

try {
val url = URL("http",
"www.google.com",
"cp.cloudflare.com",
"/generate_204")

conn = url.openConnection(
Expand Down

0 comments on commit d59d78e

Please sign in to comment.