I am a beginner on Android as I am working on developing a new Android app. In my project I have some problems when the user click on an icon, it should redirect him to dot net website I did in my code.
-
If I want to update the apk file on customer mobile to update it should prompt to the user to download the new version. How can I achieve this?
-
Also how can I know this app belong me between many app on customer device?
-
I want to fetch the bugs and errors that may occurred on the customer device. How can I do it?
Better to implement GCM push service in your application to send a notification about the update to all your application users.
http://developer.android.com/guide/google/gcm/index.html
This framework will give your application to support push notify the user from your server, and what you need to do in your application just track the received push and write a code to download new APk from server and install it automatically.
The second thing you asked about the Crash reports so the best option is use ACRA technology to get the your application report on server everything force close or logcat
Both are very easy to implement so enjoy!!