• 此项目
    • 正在载入...
  • Sign in

xuning / livekitAndroidXuningTest

96x96
转到一个项目
Toggle navigation
  • 项目
  • 群组
  • 代码片段
  • 帮助
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • livekitAndroidXuningTest
  • ..
  • sample
  • SampleApplication.kt
  • Add spotless check to CI builds (#270) · d5dd3ea3 ...
    d5dd3ea3 浏览文件
    * add spotless
    
    * fix some format violations
    
    * kotlin styling
    
    * add spotless check to ci
    
    * Update actions and fix spotless check
    
    * ktlint fixes
    
    * more spotless fixes
    
    * more spotless fixes
    
    * turn off annotation lint
    
    * run spotless check first
    davidliu authored 2023-09-17 23:38:01 +0900
SampleApplication.kt 303 字节
原文件 审查 历史 永久链接
1 2 3 4 5 6 7 8 9 10 11 12 13
package io.livekit.android.sample

import android.app.Application
import io.livekit.android.LiveKit
import io.livekit.android.util.LoggingLevel

class SampleApplication : Application() {

    override fun onCreate() {
        super.onCreate()
        LiveKit.loggingLevel = LoggingLevel.VERBOSE
    }
}