diff --git a/app/src/main/java/com/gamedog/vididin/manager/WithdrawManager.kt b/app/src/main/java/com/gamedog/vididin/manager/WithdrawManager.kt
index 8b54259..9b2dd29 100644
--- a/app/src/main/java/com/gamedog/vididin/manager/WithdrawManager.kt
+++ b/app/src/main/java/com/gamedog/vididin/manager/WithdrawManager.kt
@@ -75,6 +75,7 @@ class WithdrawManager private constructor() {
const val ERROR_PAYOUT_REACH_TIMES_LIMIT = 9 + 20
const val ERROR_PAYOUT_TODAY_NO_CHANCE = 10 + 20
const val ERROR_PAYOUT_ACCOUNT_REACH_TIMES_LIMIT = 11 + 20
+ const val ERROR_PAYOUT_ACCOUNT_INVALID = 18 + 20
const val ERROR_PAYOUT_USER_IDENTITY_LIMIT = 12 + 20
const val ERROR_PAYOUT_MUST_WITHDRAW01_FIRST = 25 + 20
@@ -539,6 +540,10 @@ class WithdrawManager private constructor() {
failTextRes = R.string.withdraw_account_times_limit
}
+ ERROR_PAYOUT_ACCOUNT_INVALID -> {
+ failTextRes = R.string.withdraw_account_invalid
+ }
+
ERROR_PAYOUT_USER_IDENTITY_LIMIT -> {
failTextRes = R.string.withdraw_fail_user_identity_limit
}
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index a64582c..8e12613 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -226,10 +226,11 @@
Country restriction
Reach amount limit
Reach times limit
- Today chance is run out
+ You have no more withdrawal opportunities today.
Your account is reach times limit
Your account is not valid
You have to withdraw 0.1 firstly
+ Your CPF account is invalid.
\ No newline at end of file