确认一个视频观看完成逻辑

This commit is contained in:
renhaoting 2026-01-10 13:42:02 +08:00
parent 12b467d553
commit 0f8a41e1a1
1 changed files with 4 additions and 1 deletions

View File

@ -1,10 +1,13 @@
package com.gamedog.vididin.youtubestatistic
import com.remax.notification.BuildConfig
class RewardConst {
companion object {
const val HOME_WATCH_DURATION = 60 * 1000L
const val HOME_WATCH_REWARD_NUM = 40
const val FINISH_RATIO = 0.05F // TODO - temp value, should be 0.8F
val FINISH_RATIO = if (BuildConfig.DEBUG) 0.02F else 0.8F
const val Check_Interval_MS = 50L
}
}