How to trace code in native lib?
- In app/build.gradle, add compile dependency for debug and release builds with:
debugCompile project(path: ':your-lib', configuration: 'debug')
releaseCompile project(path: ':your-lib', configuration: 'release') - in lib(s)/build.gradle, enable publishNonDefault:
android {
publishNonDefault true
}

浙公网安备 33010602011771号