Neptune icon indicating copy to clipboard operation
Neptune copied to clipboard

A flexible, powerful and lightweight plugin framework for Android

Results 11 Neptune issues
Sort by recently updated
recently updated
newest added

``` java.lang.NoClassDefFoundError: Failed resolution of: Landroidx/coordinatorlayout/widget/CoordinatorLayout; at org.qiyi.pluginlibrary.utils.LayoutInflaterCompat$CompatPrivateFactory.(LayoutInflaterCompat.java:91) at org.qiyi.pluginlibrary.utils.LayoutInflaterCompat.setPrivateFactory(LayoutInflaterCompat.java:60) at org.qiyi.pluginlibrary.component.wraper.NeptuneInstrument.callActivityOnCreate(NeptuneInstrument.java:162) at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2926) at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:3081) at android.app.servertransaction.LaunchActivityItem.execute(LaunchActivityItem.java:78) at android.app.servertransaction.TransactionExecutor.executeCallbacks(TransactionExecutor.java:108) at android.app.servertransaction.TransactionExecutor.execute(TransactionExecutor.java:68) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1831) at android.os.Handler.dispatchMessage(Handler.java:106) at android.os.Looper.loop(Looper.java:201) at android.app.ActivityThread.main(ActivityThread.java:6810)...

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(); ```

插件指定了packageId = 0x40但是attr还是@attr/0x7f

生成插件apk时,出现了以下问题: FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':app:processDebugResources'. > Could not get unknown property 'buildTools' for task ':app:processDebugResources' of type com.android.build.gradle.internal.res.LinkApplicationAndroidResourcesTask.