实现了双屏摄像头显示,添加了部分代码

This commit is contained in:
zxj
2025-07-31 11:40:56 +08:00
parent 56e0a85a4c
commit de4c5f1c75
86 changed files with 3446 additions and 809 deletions
@@ -0,0 +1,15 @@
package com.sw.dualscreen
import com.sw.plate.App
import timber.log.Timber
class MyApp : App() {
companion object {
const val DEBUG: Boolean = true
}
override fun onCreate() {
super.onCreate()
Timber.plant(Timber.DebugTree())
}
}