在华为mate 30 pro 华为TAS-AL00 Android 10系统加固后直接闪退,报错都是“No implementation found for void com.tencent.StubShell.TxAppEntry.fixUnityResource(android.content.res.AssetManager, java.lang.String) (tried Java_com_tencent_StubShell_TxAppEntry_fixUnityResource and Java_com_tencent_StubShell_TxAppEntry_fixUnityR
闪退主要机型如图,大部分机型不会,只有appo机型会,报错提示信息:MainTabActivity (server)' ~ Channel is unrecoverably broken and will be disposed! 请问是什么原因造成的?
TIM图片20190225141924.jpg
我正在尝试关闭白屏,它会在我启动phonegap应用程序后,在登录页面之前的闪屏后自动加载两秒钟。
我已经尝试了AutoHideSplashScreen to NO并在login.html中添加了navigator.splashscreen.hide();,如下面的参考资料所示。但它杀死了闪屏,而不是白屏。现在,在启动应用程序时,它会直接进入login.html,而不会出现闪屏。请帮我清除闪屏和login.html之间的默认白屏。
在我的应用程序中,当应用程序启动几秒钟时,我使用splash screen with time intervel,比如5秒或6秒。这是我使用的代码
private static int SPLASH_TIME_OUT = 5000;
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
Intent i = new Intent(NativeSplash.this, MainActivity.class);
startActivity(i);