I am using the third party Jabber Client(XABBER). I was able to integrate it into my application, but in the QuickContactbadge, it is showing the application name as Jabber.
I do not know where to find the code of changing the name.
I have verified manifest file. And there is no issue with it.
Could anybody please suggest which could be the Activity or Service which will be setting the app name as Jabber as shown in the screenshot.
Related
This is a Xamarin.Forms app running on Android, based on the Azure getting started Mobile App example.
I'm trying to register a device's id for notification services. Originally I was getting unauthorized, so I relaxed authorization settings on the backend. Now I am getting this error and cannot find a reason why.
I checked and double checked that notification hub has the correct Firebase details that align with the app and cannot see what the problem is here, any help appreciated.
John,
If you set WEBSITE_PUSH_ENABLED=false in your appsettings, does the problem go away?
Can you check your Mobile App's app settings?
Specifically, I am looking for the existence of the app setting "MS_NotificationHubName". If that app setting doesn't exist, you need to add it, with the name of your notification hub.
There is a bug in the Azure App Service Push blade right now. A fix is being rolled out. In the interim, instead of using RegisterAsync(), use the method described in the book http://aka.ms/zumobook - chapter 5.
I need to use Imgur to upload images online using android eclipse. i created an account and was trying to register my application to get the client id and client secret. i reached here https://api.imgur.com/oauth2/addclient
I entered my Application Name as : com.nyp.assignment (is this just a name to it or we need to follow our package name? pls advise as well)
when i get to the callback url , i have no idea what to write for it. i've refered to here at https://api.imgur.com/oauth2 but still dont get it.
can someone list an example of a callback URL for Android? (Eclipse)
I am working on this project which have no launcher activity.I want to show a toast to the user when application is installed on the phone.i am beginner in android.
Do any body have any idea of how to do this? please do share the solution i shall be thankful.
Its not possible Usman. Don't get distracted by following intents
Intent.ACTION_PACKAGE_ADDED
Intent.ACTION_PACKAGE_INSTALL
These are not sent to the package that just got installed i.e. your app :)
I have an Android app and its package name is com.domain.myapp. During the development, I have to change it to something else due to some reasons and I changed it to com.domain.myappandroid.
Now, I have to integrate Facebook SDK for Android and it asks me to add the package name and the class name of my Activity. My Activity is named GameActivity and it is in com.domain.myapp.activities, the package name didn't change to com.domain.myappandroid.activities after changing my app package name.
I know that the package name is com.domain.myappandroid but I am not sure if I should use com.domain.myapp.activities.GameActivity or com.domain.myappandroid.activities.GameActivity. I tried both and I don't know if it is working or not since the dashboard says 0 installs for Android.
Please help, thanks!
Note:
I am using using Facebook Android SDK v3.0.2 and I can't verify if it is reporting the app installs properly.
Write the package name of your app i.e. com.domain.appandroid. It will work fine.
actually you should use com.domain.myapp, the class name have nothing to do with the Facebook SDK function but callback to game site , it means wether classname you used, the Facebook function will worked well, but if you use the com.domain.myappandroid, players click the message that send by their friends, the game will not launched。。。。 so ~ use com.domain.myapp~ i just have the same case~ and i worked very well by this way!
So I have successfully integrated Zxing into my application. However I want to make the entry Action name different so that users don't have to select between the barcode scanner app and my app for scanning if they have Zxing's apk installed. I figured I could do this by changingcom.google.zxing.client.android.SCAN to something else in my calling intent and my Android manifest.
It seems to work, except I am not getting a result from CaptureActivity. Instead, I am just getting results for the product in the scanner as if the app was not running via intent. I'm not sure if anyone has experienced this issue before. Any help is appreciated, and I can post more info if necessary.
I found the answer to this. I started thinking, and realized that the CaptureActivity would need to know that the action name was being called in order to determine the type of result. I didn't find it anywhere in the activity, so I did a project wide search of the original action name, and found Intents.java, which is a class of static intent action names to be used. I changed the scan action name in this file as well, and it works now.