Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 583 Bytes

README.md

File metadata and controls

32 lines (20 loc) · 583 Bytes

一行代码修复Android 14 Debug下卡顿问题

在启动时添加以下代码:

 FixTools().fixAndroid14DebuggableLag()
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        mavenCentral()
        maven { url 'https://jitpack.io' }
    }
}

dependencies {
    implementation 'com.github.BzCoder:FixAndroid14DebuggableLag:1.0.0'
}