Android :: Plotting Market Sales - Determining If Work Is Profitable

Apr 4, 2010

I thought I'd share a script that I've been working on: http://www.anddev.org/viewtopic.php?p=30732

It lets you generate parameterizable histograms of Android Market sales by automatically downloading data from Google Checkout.

Android :: plotting Market sales - determining if work is profitable


Android :: Off Market Sales And LVL

Nov 3, 2010

If I sell a copy of a LVL controlled app outside of the market, is there a way I can authorize it so that it checks out as licensed?

View 4 Replies View Related

Android :: How To Get More Sales On Market?

Feb 27, 2009

What do you do when you put an application on the Android Market and nobody buys it? That's the subject of todays installation of Market Moves (http://blogs.zdnet.com/Burnette/?p=816). At the end there is a poll asking for your input on what to try next. Should I get rid of the free version? Reduce the price on the paid one? Add some more features? These are questions that every Android developer will face. Please have a look, add your vote for the best approach, and share your experiences in marketing your own apps in the talkback section.

View 17 Replies View Related

Android :: App Game Sales Charts

Mar 22, 2010

I tried E-mailing the staff of Phandroid about this, and didn't get a response about posting it on the site. However, I thought that it may be of interest to Android fans/developers looking for some viable statistics. The sales data are estimates, and we'd like feedback from developers on accuracy via our methodology.If you do have an app on the Android market place, we'd love to see how your stats compare to what we have in our data base - from what we've seen, most of our stats are within +/- 10% of actuals, but we're always looking for feedback!

View 6 Replies View Related

Android :: Working On A Sales Force App?

Dec 23, 2009

Anyone know if anyone is working on a Sales Force app for Android?

Sure would be nice to help move companies off of those dingleberry bricks...

View 6 Replies View Related

Android :: Determining If Device Is Using HTC SenseUI

Aug 25, 2010

How can I tell if a device is using HTC's SenseUI? I thought about using android.os.Build information, but they seem inconsistent. Is there a more definitive way? I need to be able to tell if I can launch the calendar by using com.android.calendar or com.htc.calendar.

View 1 Replies View Related

Android :: Determining What Number Is Being Dialed

Jun 28, 2010

My question is- with the telephony manager, is there a way to determine what number the phone is off hook with? I thought getLine1Number() might return that phone number that is being dialed, but it is not what I expect. I am working with 2 emulators, and added a log line so that I could see what that method is doing. When dialing another emulator, I expected getLine1Number() to return 5554, but it was 15555218135. Perhaps there is another method I should be using instead? Do I need to be into the source code to get the information I want?

View 1 Replies View Related

Android :: Determining Who Passed An Intent To You

Aug 18, 2009

I was wondering if there is a way to determine who passed an intent to my application. For example, I have a service, that I want to act differently depending on who passed the intent (for security reasons). I'm trying to sandbox each calling application, so they only have access to their data stored in my application.

For it to be secure, I cannot trust any application to be truthful about the identifying data it is passing into my service. Therefore, I need some system way of identifying who sent the intent in a way that the calling application cannot change that information. I don't know if it is possible, but I can't find anything in the Intent class, and I was wondering if there may be another structure which does what I want it to. If it is not possible, I would like to get some type of mechanism to do this in the roadmap.

View 13 Replies View Related

HTC EVO 4G :: EVO Sales Deception?

Jun 9, 2010

You make the call.Sprint Didn't Sell THAT Many EVOs..Sprint Probably Didn't Sell As Many EVOs As We Thought | Android Community.Of course this is the same company that tacked on a $10 premium data fee and not a 4G fee.

View 20 Replies View Related

Android :: Determining LocalSocket Read Size

Jul 19, 2010

I'm using a UNIX socket to facilitate communication on and Android device between a system level daemon I've got running in C and an application I've got running in Java. I'm much more of a C coder than a Java coder, so I'm having some issues when trying to read in data from the socket on the Java side. Currently, my code is as follows:

try{//Prepare to write the command and read the ACK
InputStream is = receiver.getInputStream();
OutputStream os = receiver.getOutputStream();
BufferedReader in = new BufferedReader(new InputStreamReader(is));..............................

View 1 Replies View Related

Android :: Determining Phone Looking At True North

May 11, 2010

I looked over SensorManager and was still unsure, how do I detect if the phone is looking at true north (or any other direction for that matter).

View 1 Replies View Related

Android :: Determining If Device Is Rooted Programmatically?

Aug 6, 2010

How do you determine (programatically) if an Android device is: rooted Running a cracked copy of your software or rom. I have some sensitive information in my database, and I would like to encrypt it when the phone is rooted aka the user has access to the database. How do I detect that?

View 2 Replies View Related

Android :: Determining Unique Bluetooth MAC Address

Nov 15, 2010

Is it possible to determine the unique bluetooth MAC address for an iPhone and an Android (and to a lesser extent, other smartphones) from within an app on said device? Is my assumption that the MAC address is universally unique correct? A general yes or no would be helpful. Example code in the case of an iPhone or an Android would be extremely helpful.

View 2 Replies View Related

Android :: Determining What Bitmap Resource Was Loaded

Nov 14, 2010

I have created multiple bitmaps - one for each folder (mdpi, hdpi, ldpi). Can someone show me some code or point me to the appropriate method that will allow me to detect which resource Android decided to load.

View 4 Replies View Related

Android :: Determining Filetype Of File In Assets Folder

Jun 9, 2010

Question: How do you programmatically distinguish between directories and regular files in the assets folder?

When using AssetManager to access files in the assets folder, it seems impossible to determine if a file is in fact a file or a directory. You get the list of files from the list method and then open the file using the open method. I thought perhaps using the openFd method to get the asset file descriptor (and then subsequently requesting the normal file descriptor) would provide me some information. But requesting the file descriptor for a directory results in an IOException (which makes sense since what would it mean for a directory to have a file descriptor...?).

Currently I'm relying on that IOException (resulting from attemptng to open a directory in the assets folder) in order to determine if a file is in fact a directory. (Opening a regular file works just fine). This seems like a bad idea. Any other suggestions to distinguish between a file and a directory?

View 1 Replies View Related

Android :: Determining The Current Context To Display An Alert

Apr 21, 2009

I am calling the ZXing scanner from Screen-A using intents. Once the scan is done control of course returns to the code behind Screen-A and I do some other work before calling Screen-B. Problem is the screen is black during this work period and I cannot determine the proper context to use to display a "working..." Toast/msgbox.

View 2 Replies View Related

Android :: Determining Data Type Of Column In SQLite

Jun 23, 2010

I'm working on an Android App where the user has different options for sorting the displayed data that comes from the database. Currently my orderBy string that I pass to Androids query() method looks like this:

"LOWER("+columnName+") ASC"

The problem with this is that if the data type in the column specified by columnName is integer, calling LOWER() on it will cause it to be sorted alphabetically, i.e. based only on the leftmost digit, which of course doesn't make any sense for numeric data. Hence I only want to apply LOWER() if the data type of the column is not integer. What I have in mind is a statement like this:

"CASE WHEN [data type of columnName is integer] THEN "+columnName+" ASC ELSE LOWER("+columName+") ASC END"

The part in the brackets is what I don't know how to do. Does SQLite provide a function to determine a column's data type?

View 3 Replies View Related

HTC EVO 4G :: Official Sales Amount After Release

Jul 3, 2010

Any word on how the evo is doing as far as number of sales? I haven't heard anything at all. Which is kind of strange usually after the first week or two a number is released.

View 2 Replies View Related

Samsung Vibrant :: Sales Of US Galaxy S Phones?

Sep 14, 2010

I've been curious to know which US Galaxy S model has sold the most. Anyone know where one can find such information?

View 2 Replies View Related

Android :: Why Doesn't Market Work?

Jan 30, 2010

WHy Is the market so bad. It's such a pain in the as#.Yes I know its being vamped in the next ROM update, but for now search for a word 8 results found.Would it be too much to ask to show me the 8 results found rather then showing me a error asking me to check my spelling. Try another key word or be more general?I already know there are 8 results why can't i see them.

View 2 Replies View Related

Android :: InstallLocation Does Not Work Through Market

Aug 3, 2010

I have updated my android application with android:installLocation="auto" in the manifest. If I install it on my N1 via the USB cable, it works and allows me to move the application to my SD Card. However, I have a friend that has downloaded the application through the market, and the option is grayed out for him even though it is the same version of the APK. We uninstalled the market version and installed it through the USB cable and he had the option to move the app to the SD Card. We uninstalled and reinstalled the market version, and again it was grayed out.

View 1 Replies View Related

Android :: Determining Current Foreground Application From Background Task Or Service

Jan 30, 2010

I wish to have one application that runs in the background, which knows when any of the built-in applications (messaging, contacts, etc) is running. So my questions are: How I should run my application in the background. How my background application can know what the application currently running in the foreground is.

View 4 Replies View Related

General :: Unwanted Sales Messages In Notification Area?

Jan 7, 2012

I've go a Motorola DroidX with Verizon as Carrier and I keep getting sales messages in my notification area. How can I block them?

View 8 Replies View Related

Android :: How Does Market Search Engine Work

Aug 5, 2010

How do you improve the position of an app in Android Market search results? The apps don't seem to be sorted on downloads.

The scope of this question is limited to working with the Android Marker search engine, of which there's little or no information. I changed the title to make it clearer.

View 3 Replies View Related

Android :: Market Licensing Sample To Work

Sep 28, 2010

I downloaded the sdk and added the library to my workspace, then the sample for market licensing. The sample app seems to force close somewhere after/during the instantiation of LicenseChecker. I tried running on the emulator with Google API 8 and on a droid x with froyo and it force closes. The stack shows PerformLaunchActivity as the top item. Both emulator and phone had a registered gmail account. how to get this to work?

View 1 Replies View Related

Android :: Redirecting To Market Search URL Doesn't Work

May 19, 2009

To pretty up the URL we have on our site a URL /get/g1. It redirects to our market.android.com/search URL, eg http://market.android.com/search?q=pname:ourappname.

However, going to that link in the G1 browser results in a 404 instead of opening the Market to our app.

Questions: 1. Is this a known issue? 2. Does the browser preprocess links on the page but not intercept them in a redirect?

View 5 Replies View Related

HTC Tattoo :: Can Android Market Work On Wifi Exclusively

Apr 4, 2010

My sim card has been blocked on the ATT side from using data (company pays for our wireless on the condition that data is blocked). That said, I have been unable to use Android Market at all because of it. At least, that's what I think the problem is. I know my sim is not data provisioned but shouldn't Android Market work over wifi exclusively?

View 14 Replies View Related

Sony Ericsson Xperia X8 :: Android Market Don't Work

Nov 9, 2010

last 3 days programs don't want download to phone. In notices from top panel i see message "download 'program name' completed successfully", But icon is /! - completed successfully. If expand top panel, messag is "failed to download, please try again"

View 2 Replies View Related

HTC Hero :: Android Market Not Displaying Correctly / Get It To Work?

Dec 9, 2009

Has anyone noticed that when you do a search for a specific app it will say "X amount" results for "(whatever you searched for)" sometimes it wont load the number of apps it found for what I searched for. I have to perform another search for something else and try it again before it will display the apps results.

View 2 Replies View Related

Sony Ericsson Xperia X8 :: Android Market Wont Work

Nov 27, 2010

My android market wont download applications.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved