[6.5.0] renote the gradle and test

This commit is contained in:
EmArrow
2024-07-11 18:45:10 +08:00
parent a6771e4d02
commit 25a81de567
2 changed files with 4 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
//apply from: rootProject.file('gradle/bytex/bytex.gradle')
apply from: rootProject.file('gradle/bytex/bytex.gradle')
Properties properties = new Properties()
properties.load(project.rootProject.file("gradle.properties").newDataInputStream())

View File

@@ -25,15 +25,15 @@ object CallerMsgBoxManager {
* 存储数据到消息盒子
*/
fun saveMsgBox(bean: MsgBoxBean) {
// CallerTrace.write(TAG,bean)
// providerApi?.saveMsg(bean) //todo emArrow test
CallerTrace.write(TAG,bean)
providerApi?.saveMsg(bean) //todo emArrow test
}
/**
* 存储含有pb的数据到消息盒子(区别与上述方法中的trace write)
*/
fun saveMsgBoxHasPB(bean: MsgBoxBean){
// providerApi?.saveMsg(bean) //todo emArrow test
providerApi?.saveMsg(bean) //todo emArrow test
}
/**