Waking up iOS parent app from today widget - background-process

Is there a way to wake an iOS parent app and have the parent app actively run in background (but not open the app) in the today widget view?

Related

RefreshView when target Platform is UWP then it is not wokring

RefreshView when target paltform is UWP it is not working i.e I'am unable to apply pull to refresh, but on iOS and Android it is Working fine.
RefreshView when target paltform is UWP it is not working
I have to say the RefreshView only avaiable for touch screen, if you use mouse mode, it will not response your drag gestue. please run your app with simulator or touch device.
For more detail please refer to Run UWP apps in the simulator document

How to debug an iframe/webview in electron framework

I have webview/iFrame inside electron framework. I want to debug the code inside the iFrame.
I launch electron app with debugger windowas shown in the picture.
I want to debug the content that gets loaded.
In your renderer script, get the webview and open its devtools. You're opening the devtools of the renderer that contains the webview.
document.querySelector("webview").openDevTools();
Source

How to get mobile app lifecycle events on QtApp

I am programming an app in Qt 5.9.4 commercial license. My app runs on Android and iOS.
Question:
Is there a way in Qt to detect usual mobile device events like:
- Device display switched off
- Device went to background after user presses home button on iOS/Android
- back button pressed on Android etc
There are a bunch of these events that each of the platform Android and iOS trigger.
If there is class/module in Qt that is relaying these events back then I wouldn't have to do the extra work of writing native(java and objective-c) classes to get these events inside my QtApp.
Most of these events are handeled by Qt itself and you can get them through classical means. Qt tries to hide android specific stuff as good as possible and delivers those though events etc. as you would get them on a desktop application.
The back button press triggers a QCloseEvent that is sent to the primary window. You can install an event filter on the object from C++ it to intercept it. For qml it's the Window::closing signal.
Since Qt does not support background execution of activities, the background press is propably reported as close event as well - or it quits the application directly.
For the DIsplay switch of I don't now for sure, but maybe the QGuiApplication::applicationStateChanged signal does report it as Qt::ApplicationSuspended or another of those states - simply try it out! (this might be the case for other events as well)
Short Hint for Android: If you however want something Qt does not handle, you can always just create a custom Java activity that extends the QtActivity and use it in the manifest. From there on you can use the JNI to interact with Java from C++ and vice versa. If you need to do so, have a look at the Qt Android Extras - They make using the JNI much easier and provide a bunch of nice wrapper classes and utility methods in the QtAndroid namespace that can come in very handy.

Xamarin.forms iOS app rejected on app icon

I've been trying to publish my xamarin.forms iOS app to the app store but it keeps getting rejected with the following message: We noticed the app icon displayed on the device and the large icon displayed on the App Store do not sufficiently match, which makes it difficult for users to find the app they just downloaded.
Apparently my device icon does not match the app store icon. Somehow my app is returning the xamarin default logo when apple is testing. But my app's icon shows correctly when I test on my device. In my project I've included all my app's icons under Assests: AppIcon and LaunchImage. Is there anything else I am missing ?
Apple also included the xamarin default image which is named "Icon-72.png", I searched my entire project to replace this image with my app's image and I can't find it. Please help

Scene Builder window (and JavaFX app) not displaying properly

I recently built a JavaFX app using Eclipse on Ubuntu 14.04. It works fine. However when I run the app on Windows, the app window doesn't render properly (only the border and title of the window appear, and the inside is a copy of the background). I thought that it may be the fxml so I opened the project in Windows in Eclipse and downloaded Scene Builder 8.0.0 64bit to open the fxml. But when trying to install Scene Builder the same thing happens as with the app. The window does not render properly, the inside is just a copy of the background, and only the title and borders are visible. What's going on?
UPDATE: When I run the executable jar rather than the .exe installer,I get the following output: WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0
x80000002. Windows RegCreateKeyEx(...) returned error code 5.
The same problem happens: the window doesn't render properly.

Resources