This question already has answers here:
Closed 11 years ago.
What is the best way to let the users know that I have an update. I had seen once an application with update dialog but I really don't know how they did it. Can someone guide me with this? Thanks in advance!
I guess they either use unofficial android market api to get the latest app version or they pull own server which knows about updates.
Maby let your application query an internet server on startup :) Pretty straightforward but it will do just fine.
Related
This question already has answers here:
Is the Firebase Console is dead (not showing projects)?
(3 answers)
Closed 2 years ago.
I didn't do anything with database. Everything was fine. But one moment and in console I don't see ANY of my projects in firebase. But my applications still working which means database exists. How it is possible? What should I do?
P.S. People if you do -1 please let me know what is the problem with question?
As I answered in another same question, all https://firebase.clients6.google.com requests are getting 500 error
Services are OK, but you can not list, edit, add projects, and neither you can deploy to them
See this answer from a Firebaser here https://stackoverflow.com/a/61103273/2583487
The Firebase console is indeed not listing projects at the moment.
We are investigating the issue. We'll post updates to the status dashboard, and I'll update here too.
It is working now, we can continue development
I want to implement auto update on my android app, but i don`t know how to do it. Can you please help me, I have searched the web but i cant find it.
I have tired ,
The code in
Force update android app when new version available.
But it didn't work at all.
Hey Guys I have found the answer I am currently using javiersantos AppUpdater
Firstly, I am not a coding guy. So please explain to me like a 5 year old! :)
The problem that I am facing is that is it possible for an Android app to automatically recognize whether the user has rated that particular app on the play store or not? There are pop-ups etc which can guide the user to the play store page and rating can be done there, but does the app realize that it has been rated? If so, then is there a particular code that needs to be included wile developing the app?
Thanks
A simple 5-year-old answer: No, there is no way to do this.
This question already has answers here:
Closed 10 years ago.
Possible Duplicate:
Facebook API - How to get user’s address, phone #?
Is it still possible to get the user Phone or Mobile number using Graph Api? I already read a lot of forum regarding this issue and the other said the facebook removed the permission to get the mobile or phone number.
So I just asking if there is someone can tell if there is still way to get it?
any thought will be highly appreciated.
A pretty scary feature. It seems that Facebook has retracted these features of the API due to privacy concerns.
For more details read this.
Actually i have the same issue when i am trying with facebook.I read lots of forums but no use.I came to know it is not possible to get the "Phone no".But instead of that i took "mail id" and "user name" and i managed with that..
This question already has an answer here:
Closed 10 years ago.
Possible Duplicate:
Develop application like Google play?
I want to develop application like "Google play" to my organization purpose. Please give me some advice on this ? How do i start this?
I am looking for we have the server which has contains android application. By using this application it has to list out all the application available from our server and also listed the application which is installed from our server and show the updates for installed application if its available in our server.
Maybe you could use Google play itself for that purpose. Take a look here:
http://googleenterprise.blogspot.ca/2012/12/a-new-way-to-distribute-your-internal.html
Hope that helps.
Installing app is quite easy - just send intent to "open" .apk file.
Listing installed application also possible - PackageManager
Checking for updates - GCM or AlarmManager frequently checking for updates.
On the other hand, maybe all you need is private channel introduced last time:
http://support.google.com/a/bin/answer.py?hl=en&answer=2494992
Could you be a bit more specific? You need here both a server and client side component, maybe use some rest web-services to feed your client. As a quick idea you can just put out a gridview with some custom items which while scrolling would async call your web-service to display your apps.
Again, I'm not sure if this is what you're looking for, try to be a bit more specific.