GLDriver/app/src/main/java/com/dahe/gldriver/temp/AuthPageConfig.kt
2024-03-14 10:53:31 +08:00

19 lines
276 B
Kotlin
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

package com.dahe.gldriver.temp
interface AuthPageConfig {
/**
* 配置授权页样式
*/
fun configAuthPage()
/**
* android8.0兼容
*/
fun onResume()
/**
* 释放sdk内部引用防止内存泄漏
*/
fun release()
}