[3.4.0] add func of setting of tacip

This commit is contained in:
zhongchao
2023-07-20 14:12:14 +08:00
parent 52e06ded88
commit 512cdd77b4
18 changed files with 411 additions and 51 deletions

View File

@@ -0,0 +1,18 @@
package com.mogo.eagle.core.function.api.setting
interface IMoGoRequestActivityHandler {
/**
* 向activity申请权限
*/
fun handleRequestPermission(tag: String, permission: String) {
}
/**
* 请求修改亮度
*/
fun handleRequestLight(percent:Float){
}
}