Android :: Application Statistics / Number Of Downloads Decrease?
Nov 19, 2009I don't understand it. Yesterday I had 860 downloads and today I have 400. Why? How can the number of downloads decrease? How can I find the real numbers?
View 7 RepliesI don't understand it. Yesterday I had 860 downloads and today I have 400. Why? How can the number of downloads decrease? How can I find the real numbers?
View 7 RepliesWould like to know, from someone who has tried it, if changing an Application's title in the Developer Console has any affect on the applications Ratings or Number of download statistics. In other words, will I lose anything?
My impression is no, but I don't recall if documentation says that explicitly or if its just implied. Would like to know from someone who has tried it. I don't want to experiment with my app.
Steps to change Title. Go to Developer Console->click link for the app->Look for Listing Details-> Change the Title ->click Save
Does anyone else have their download statistics stalled? Mines are showing the same number since the 17th. The apps are published and are visible from the market's client, so I hope it's (another) temporal problem from the Market.
View 11 Replies View RelatedDoes Google provide any data on the devices a published application installed on? I am prioritizing a fix for HTC specific issue (use of proprietary intent). Knowing share of HTC phones of the install base.
View 2 Replies View RelatedIs there an app that can show me call usage statistics for the phone? Particularly, I'm trying to figure out how many minutes I've spent talking to a particular person. Sure, I could go through and add up every single call I've made to them in my call log, but is there some app that does that for me?
View 3 Replies View RelatedAre there any apps out there for football coaches to take games stats such as down, distance, yards gained, hash, ODK, Play type, etc? I have a MyTouch and this kind of app would help me take stats on Friday nights.
View 1 Replies View RelatedI am doing promotion of android application, where I want to increase numbr of downloads.
after SEO, SMM activity I am not getting result.what can be other ways that can increase my application's number of downloads.
I am having trouble finding class or API in android documentation which can help me get battery usage statistics per application. I have read PowerManager class and BatteryManager but they are of no use .Though I can find applications like PowerTutor that do give you battery usage statistics per application, so I think its technically possible?
View 1 Replies View RelatedI'm looking for an app that will act as a scorecard and also be able to track stats such as fairways hit, greens in regulation, up & downs, sand saves, etc. Added bonus if it will calculate my handicap. Anyone out there have any favorites? Paid apps are okay. GPS distances are not a priority for me.
View 3 Replies View RelatedI have a listview populated by a text file hosted on my website that is parsed and made into separate list items. Each list item sends the user to a new activity to view more information on that item. My question is - how do I go about tracking the following data about my application..
# of views of the whole listview
# of unique views of the listview
# of times each list item is clicked
# of unique clicks of each list item
One of my applications downloads a database from a server. When I install the application onto my phone, it downloads the file correctly and loads the information, no exceptions thrown or anything. However, when I upload the apk into the Android Market Place and download it onto the phone, the application downloads the database and then crashes, saying that the sqlite handler was not able to open up the database.
Here's the progression of code:.............
I am new too the driod era and have and HTC desire. I have downloaded lots of apps and am trying too figure out how too get them onto the HTC from my PC. Its prob quite simple and am just looking for someone too point me in the right direction!
View 2 Replies View RelatedI'm new to any touch screen phone technology and got my HTC Hero yesterday. I've played around with it and followed the instructions in the leaflet it came with. I have managed to use it to open up webpages including my usual email provider/facebook and have bookmarked them. I have inserted my numbers into the address book (and managed to sync with facebook for photos/birthdays), send SMS, make phone calls but that is it! In simple terms: how can I find apps and download them, does it always work through WiFi, how can I take things off the homepage (I have managed to install the (empty) playlist to the homepage but cannot remove it.
View 7 Replies View RelatedThe space between checkboxes in below UI layout is too much, how to decrease it?
View 13 Replies View Relatedi want to start an application on receiving sms from a particular number.i am trying it with on Message Waiting Indicator Changed(boolean mwi. method but i m struggling.so, anyone there to help me in detail?
View 1 Replies View RelatedI am working on an android project and i have to save a phone number from my application into a SIM card. Can someone tell me if this is possible and how?
View 2 Replies View RelatedWe have a set of 3-5 android applications that we have developed for an enterprise to integrate with our back-end. How do we create an installer system that upgrades applications automatically. We were thinking of getting version numbers and querying the backend to get current versions and downloading them. How do I get the version number of an application in Android?
View 1 Replies View RelatedI uploaded my app to the market last night, and after an hour or so it showed 107 installs, 88 active, 2 comments. It still says that (12+ hours later), even though when I click comments there are 10+. How often do the statistics update? Is there any way to update them manually?
View 1 Replies View RelatedIs there any statistic/research study on the no. of users who root their phones?
View 6 Replies View RelatedHow can I decrease the font size of my spinner? I have reduced the spinner size to 35 pix because of which my text gets cut in half. How do i do that? Also I dont want anything to be selected beforehand. Default text should be "select some value".
View 1 Replies View RelatedI would like to write a program which increases/decreases the volume of the currently playing song. Can any one please help me to do it?
View 2 Replies View RelatedI am currently working on a Mobile App project for Ford company, and I am a newbie in Java Android.
I am just wondering, is there any way to decrease the size of rating bar in Android 2.1?
I want to preserve more spaces for other buttons and edittexts.
I have a small test app on Android that is meant to test tracking multitouch input, but I am only ever getting two touches at the same time on my Evo. Does anyone know if this is a limitation to Android or the hardware? By the way, here's my test class so you can try it out yourself.
import java.util.HashMap; import android.content.Context;
import android.graphics.Canvas; import android.graphics.Color;
import android.graphics.Paint; import android.graphics.Paint.Style;
import android.view.MotionEvent; import android.view.View;
public class PressureView extends View {
private HashMap<Integer, Spot> mSpots = new HashMap<Integer, Spot>();
private final int[] mColors; private final Paint mPaint;
public PressureView(Context context) { super(context);
mPaint = new Paint(); mPaint.setStyle(Style.FILL);
mColors = new int[]{Color.RED, Color.GREEN, Color.BLUE, Color.YELLOW, Color.MAGENTA};
} @Override protected void onDraw(Canvas canvas) { super.onDraw(canvas);
canvas.drawColor(Color.WHITE); for(int id : mSpots.keySet()) {
Spot spot = mSpots.get(id); mPaint.setColor(spot.Color);
canvas.drawCircle(spot.X, spot.Y, spot.Pressure*500, mPaint);
} } @Override public boolean onTouchEvent(MotionEvent event) {
System.out.println("***" + event.getPointerCount() + " Pointers");
for(int i = 0; i < event.getPointerCount(); i++) { int id = event.getPointerId(i);
Spot spot = null; if(mSpots.containsKey(id)) { spot = mSpots.get(id);
} else { spot = new Spot(); spot.Color = mColors[mSpots.size()]; }
if(event.getAction() == MotionEvent.ACTION_UP) spot.Pressure = 0;
else spot.Pressure = event.getPressure(id);
spot.X = event.getX(id); spot.Y = event.getY(id);
mSpots.put(id, spot); } invalidate(); return true;
} private class Spot { public float X, Y, Pressure; public int Color; } }
What is the maximum number of threads allowed per application?
View 2 Replies View RelatedI have a application which send sms. but i found that the application always sends 2 sms messages to the selected number. couldn't figure out how is this happening. so i'll paste the code below if you have any suggestions just let me know
CODE:.......................
I'm looking for an app or widget that will give me a breakup of each category of application running on my phone.I own a Samsung Galaxy S running Android OS v2.1. (The phone itself has a stock "Settings -> About Phone -> Battery use" report, but that is rudimentary and doesn't report all types of usages.) If this question has already been answered, I'd be grateful for a link (couldn't find one by searching the forum).
View 2 Replies View RelatedOn the Market web page, I can see how many copies of my apps have been installed. But, this only shows the current total. If I want to see historical trends, I need to check the page daily and record the numbers myself -- an annoyance at best. Is this info available anywhere on the Market site? If not, has anyone written a screen-scraping utility (or equivalent) that can harvest the data into a spreadsheet?
View 18 Replies View RelatedLast week I published our first app to the Market, which is a game targeted to users in The Netherlands. Now that the G1 has been available over here for a couple of days, we have received feedback from several of our users. When I look at the developers console in the market however, the download count still shows 0.
Also on the device it is listed as <50. When looking around in the Market, I see that all applications targeted to The Netherlands are listed as having <50 downloads, even an application that received a lot of publicity. Have other developers noticed the same?
I'm at the beginning of writing an AddWidget for the home-screens. From what I understand, these can only utilize RemoteViews ran by the home-process and not your own. Which means we won't be getting any callbacks, such as onDraw. Is there a way you can get knowledge of how often and for how long a widget is visible? The RemoteView API seems very simplistic, what am I missing?
View 2 Replies View RelatedDoes anyone know of a direct api that allows access to CPU usage statistics for different applications/tasks running inside android? All I can find is data available by accessing a file "/proc/stat" but this seems a little cumbersome. ActivityManager holds data about processes/tasks etc but no CPU usage stats.
View 12 Replies View Related