fix 初始化修复
This commit is contained in:
parent
471d1503c8
commit
c6f35f6223
|
|
@ -855,8 +855,11 @@ class SettingFragment : BaseFragment(), CoroutineScope by CoroutineScope(Dispatc
|
|||
getNodeTimeOutNum--
|
||||
Log.d("GetNodeTimeOutNum==>$getNodeTimeOutNum")
|
||||
delay(1000)
|
||||
if (getNodeTimeOutNum<=0) {
|
||||
errInit()
|
||||
}
|
||||
}
|
||||
errInit()
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -51,6 +51,7 @@ subprojects {
|
|||
}
|
||||
|
||||
val isApp = name == "app"
|
||||
var isTZ = true
|
||||
|
||||
apply(plugin = if (isApp) "com.android.application" else "com.android.library")
|
||||
|
||||
|
|
@ -60,14 +61,18 @@ subprojects {
|
|||
applicationId = "com.yingmao.clash"
|
||||
namespace = "com.yingmao.clash"
|
||||
}
|
||||
// if (isTZ){
|
||||
// applicationId = "com.taizi.clash"
|
||||
// namespace = "com.yingmao.clash"
|
||||
// }
|
||||
// minSdk = 21
|
||||
//noinspection ExpiredTargetSdkVersion
|
||||
// targetSdk = 32
|
||||
minSdk = 21
|
||||
//noinspection ExpiredTargetSdkVersion
|
||||
targetSdk = 34
|
||||
versionName = "1.0.3.7"
|
||||
versionCode = 1037
|
||||
versionName = "1.0.3.8"
|
||||
versionCode = 1038
|
||||
resValue("string", "release_name", "v$versionName")
|
||||
resValue("integer", "release_code", "$versionCode")
|
||||
externalNativeBuild {
|
||||
|
|
|
|||
Loading…
Reference in New Issue