App displaying default ICON in BBM connected apps list - qml

I am working on BB10 app which has BBM functionality.
I have registered with BBM, but when I see BBM connected apps list App is displaying with default App icon.How can I change default app icon to my own app Icon.
Please Help!!!

It should use your application icon. However, there is an issue where if you change your application icon it doesn't pick up the change. So if you installed the application once with the default icon, it would remain that way on that device. The issue is logged here:
ProfileBox icon not updated when application upgraded with new icon

Related

Using a Toolkit Uwp Notifications when application is on Full Screen

I am building an application that uses the Microsoft.Toolkit.Uwp.Notifications dependency to display a desktop notification on Windows.
However, since my application is presented in Fullscreen by using AppWindowPresenterKind.FullScreen the notification shows below the application and is not seen by the user when it pops up.
What can I do to see the notification even my application is in full screen? Is there any alternative NuGet I can use to do this?

Native way to inform user there is a mobile app?

Often when viewing a website on a mobile device you'll get a notification that a mobile app is available, or if you already have the app downloaded you'll have the option to open the URL in the app.
Is there a native way to do this or are these notifications always custom?
When users click on a link or download a file and the suggestion pops up to open the respective app, that's called deep linking. iOS labels it as Universal Links and Android uses App Links.

Detect when other Application is launched in React Native app

I want my react native app to detect when Google Maps app is open to show some travel tip. Is it possible?
You can not detect if another app is launched for security reasons. Installed apps can´t listen another apps because they are "sandboxed".
You can only interact with another apps opening it throught your app by Deeplinking or detecting if is or not installed.
It's not a limitation of React Native. All iOS applications cannot access other applications, except to open it or share some resources.

Why don't i see my android app's icon in fabric?

I have a question in Fabric home. When I added an iOS app in Fabric app's icon is showing. When I added a android app, it's icon isn't showing.
Can anyone help me?
From Fabric doc:
We will automatically upload your app’s icon when the app is first
added to Fabric. However, app icons can change! To update your app’s
icon, log into your account, head to your app’s settings and click on
the current icon. Select the new icon and upload it.
Possibly at the time of integration of your app to fabric, you've default app icon so you're getting default icon at fabric home.
No problem you can now change your icon with your original icon at fabric.

Facebook messenger heads popup

In my application I'm trying to implement a popup which will be overlay on other applications. I did it by adding this permission SYSTEM_ALERT_WINDOW in the manifest. It works fine, but on Android 6 I know that I need to request on runtime a permission to "Draw over other apps".
I entered to this settings in my phone and saw that Facebook, Messenger, Skyoe and other apps are allowed to draw over other apps without asking this permission during the installation process (on android 6) and was wondering how can I do that? is targeting to sdk version below 22 will solved this? if so, is there another solution instead of targeting to a lower sdk version?
for example, I uninstalled the facebook messenger application, and install it again, just opened it without completing the registration process, then I opened the settings and clicked on "Draw over other apps" and it was automatically set to "Yes" means that the messneger app can draw over other applications.