You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
415 B
18 lines
415 B
package top.niunaijun.blackdex.data
|
|
|
|
import android.content.Context
|
|
import top.niunaijun.blackbox.app.configuration.ClientConfiguration
|
|
|
|
/**
|
|
*
|
|
* @Description: 启动配置文件
|
|
* @Author: wukaicheng
|
|
* @CreateDate: 2021/5/23 14:04
|
|
*/
|
|
class BlackDexConfiguration(private val context: Context) : ClientConfiguration() {
|
|
override fun getHostPackageName(): String {
|
|
return context.packageName
|
|
}
|
|
|
|
|
|
} |