Neptune icon indicating copy to clipboard operation
Neptune copied to clipboard

wiki中的错误

Open LoveqLRC opened this issue 4 years ago • 0 comments

wiki中宿主依赖写成了 implementation 'com.iqiyi.video:neptune:2.7.0' 实际应该是 implementation "org.qiyi.video:neptune:${NEPTUNE_LIBRARY_VERSION}"

wiki中的

NeptuneConfig.Builder()
            .configSdkMode(NeptuneConfig.INSTRUMENTATION_MODE)
            .enableDebugMode(BuildConfig.DEBUG)
            .build()

实际应该是

 NeptuneConfig.Builder()
                .configSdkMode(NeptuneConfig.INSTRUMENTATION_MODE)
                .enableDebug(true)
                .build();

LoveqLRC avatar Apr 28 '20 03:04 LoveqLRC