2025-11-25 08:33:32 +00:00
|
|
|
package com.gamedog.vididin.router
|
|
|
|
|
|
|
|
|
|
import android.app.Activity
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
interface IRouterPrivacy {
|
|
|
|
|
fun startActivity(activity: Activity)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface IRouterVersion {
|
|
|
|
|
fun startActivity(activity: Activity)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface IRouterFeedback {
|
|
|
|
|
fun startActivity(activity: Activity)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface IRouterWithdrawRecord {
|
|
|
|
|
fun startActivity(activity: Activity)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
interface IRouterSplash {
|
|
|
|
|
fun startActivity(activity: Activity)
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-28 03:25:45 +00:00
|
|
|
interface IRouterWatchAd {
|
2025-12-01 10:56:29 +00:00
|
|
|
fun startActivity(activity: Activity, taskType: Int, taskDataJson: String?)
|
2025-11-28 03:25:45 +00:00
|
|
|
}
|
|
|
|
|
|
2025-11-25 08:33:32 +00:00
|
|
|
|