Android 日常报错之 Execution failed for task ':react-native-update:compileDebugNdk'

申屠浩歌
2023-12-01
// 报错重要信息
Execution failed for task ':react-native-update:compileDebugNdk'
  • 锁定module react-native-update,
  • 在build.gradle中添加
android {
    sourceSets.main {
        jni.srcDirs = []
    }
}

Sync grade file now, then build your project again.

 类似资料: