Android :: Cannot See Application In Market (Different OS Versions)

Jun 12, 2010

I have 3 android phones with different Os version. I can see all my apps, but one disappeared for more than a day and still can not see it.

Android :: Cannot See Application in Market (Different OS Versions)


Android :: Having Multiple Versions Of Same App In Market

Feb 19, 2009

I am planning to have two versions of the same app available in the market - let's say "App-Lite" and "App-Advanced". They both almost the same core functionality, but App-Advanced has a bit more specific features, than the App-Lite has. Now I am thinking what would be the strategy of deploying those two apps in the market. The simple way is to provide different name space in AndroidManifest.xml for both apps, so "App-Lite" and "App-Advanced" would show up as two completely different applications and could be installed parallel on the same device. But I'm also thinking about another way of installing the App-Advanced version - like an upgrade to the App-Lite which might be already installed. To do this, I can just set the same name space for both app in AndroidManifest.xml, so after installing one app would replace the other one - I can do this from adb command line, but I'm not sure how android market would behave in this case. Will it show them as two different apps, will it show them as two different versions of the same app with the ability to upgrade from one version to another, or it just will not allow to publish two apps with the same name space? Is this scenario doable with Android Market?

View 3 Replies View Related

Android :: Building Multiple App Versions For Market

Feb 18, 2009

We're thinking about building light and paid versions of our app for the Market. But I am not clear what we need to do, or how to do it. (1) Do we definitely need the two versions to have different package names for the two builds ?It seems logical to do it that way, but I have not found a clear answer from Google to that question. Though I have found several people asking the same question. 2) Is there any support in Eclipse for building two similar apps with different package names from the same java and xml files ?In most of the IDEs I've used, it is a doddle to define multiple build targets for one project, but none of those mechanisms seem to be present here. And, the package name is embedded in every java file, as well as in many places in the manifest, leaving me without a tidy way to build to alternate package names.Is there a tidy way to build multiple version ? Or are we really going to end up copying the whole codebase and search-and-replacing the package name.

View 6 Replies View Related

Android :: Application Compatibility Between Different Versions

Jan 26, 2010

I can run my application on 1.5, 1.6 and 2.0 emulator and on a 1.5 device without any problems. But some of my users are reporting force close and strange menu entries (see the attachment) using 1.6 and higher version devices.
This screen should look like this:
http://www.taypo.com/blog/WindowsLiveWriter/TurkceKlavye0.7_6F1/settings_0.7_2.png

And the code that generates this screen is:
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory android:title="@string/general_settings">
<CheckBoxPreference android:title="@string/haptic_feedback" android:defaultValue="true"android:summary="@string/haptic_feedback_summary" android:key="vibrate"/>
<CheckBoxPreference android:title="@string/sound_feedback" android:defaultValue="false" android:summary="@string/sound_feedback_summary" android:key="sound" />
<CheckBoxPreference android:title="@string/auto_caps" android:defaultValue="true"
android:summary="@string/auto_caps_summary" android:key="auto_caps" />
</PreferenceCategory>
<PreferenceCategory android:title="@string/layout_settings">
<ListPreference android:title="@string/keyboard_layout" android:defaultValue="TRQ" android:key="kbd_layout" android:entries="@array/layout_names" android:entryValues="@array/layout_values" />
</PreferenceCategory>
</PreferenceScreen>

View 1 Replies View Related

Android :: Manage 2 Versions Of The Same Application?

Sep 3, 2009

I want to use the same eclipse project to maintain only one source code (or two projects that refer to a generic project). My problem is that the names of the package have to be different on the market (eg: my.android.app.lite and my.android.app.pro). If the package names are differents, the generated java ressource files are differents (eg: my.android.app.lite.R.java and my.android.app.pro.R.java). So, the source files must point to differents R files according to the version (pro or lite) and I have to change all the import...

View 6 Replies View Related

Android :: Maintaining Both Free And Pro Versions Of Application

Mar 27, 2010

I want to create a PRO version of my application for Android and was wondering how to structure my repository. For know I have a trunk and feature branches. I'd like to put a pro version in another branch but maybe there is a better way? For example, maybe I should create two branches - one for free version, the other for pro?

Pro version will have additional features and will be ads-free, so e.g. I don't want to include AdMob libraries in the pro version. Do you have any experience or suggestions as to what would be the best way to structure the repository in this case? I think I've found the best solution (for my app) in this thread:
http://groups.google.com/group/android-developers/browse_thread/thread/4ad3d67f735f16d7/948b4f9eee2490a3

The trick discussed there is about having another application that only serves the purpose of unlocking PRO functionality in the actual application. The unlocking app is paid in the market and the actual app merely checks for the existence of it on the device.

View 3 Replies View Related

Android :: Building Two Versions Of Application - Best Practice?

Apr 19, 2009

What is the best way to release two versions of an application? E.g. a free version with limited features, and a paid version with the full feature set. #ifdef would be the ideal way to do this, but Java doesn't support it. Could I do something like: try {import com.foo.myapplication.ExtraFeatures; } catch (Exception e) { // ignore it, this must be the free version}? I could manage with this kind of construct, although #ifdef really would be ideal.

View 10 Replies View Related

Android :: Handle Application Versions/updates

Mar 1, 2010

I'm pretty new to Android, and I had some questions that I've had trouble getting answered via the web. I have done a few searches, but I'm not sure how to word my question, either. So I apologize if this has already been covered somewhere...but here it goes. I was wanting to know how the Android handles application versions/ updates. Specifically, does an update blow away my database? Is there a way to preserve the users' settings as well?

View 5 Replies View Related

Android :: Developing Application Which Support All Versions And Screens

Jul 19, 2010

I want to develop application that should support all version (latest and old) and it should adjust screen resolution (large,medium). I read document. There I found legacy application if I develop application in 1.6 there I am giving:

<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4"/>

Is it good way to develop application and is it support 1.5 and 1.5+. Users able to find my application there market.

View 4 Replies View Related

Android :: Application For Different Versions And Resolutions / How To Create Emulator?

Oct 23, 2010

I am in middle of learning application development. I have created an application in 2.2 and tested that in my HTC Nexus One device. I looks like fine. My client testing same application setup in his device (Droid2). I don't have that device to test.

He said there are some font sizes are vary and button alignments are missing. When I testing in my device everything looks fine. So, I need to test my application in Simulator which resembles like Droid2 device. Can anyone tell me how to create emulator and setup like Droid2. And also, is there any need to adjust my code or anything in manifest file.

View 2 Replies View Related

Android :: Upload Multiple Versions For Single Android Application For SDK Levels

Dec 16, 2009

I'm developing one android application which needs to support Android OS 1.5, 1.6, and 2.0. I've three different .apk files for all three SDK. How can I upload three different .apk files on Android Market Place for single application? I would like to have all 3 versions available under one application name. is this possible? So, users with any SDK can use my application.

View 5 Replies View Related

Android :: Easiest Way To Release Android Application For Multiple OS Versions?

Jul 1, 2010

I have written an Android application that I am about to release, but I would like to have a 2.1 version with multitouch and a lower API version without. However, if I simply just use the minSDK setting, the 1.6+ version would show up in the market with the 2.1 version on 2.1 phones. Is there any way to release for a specific range of OS versions?

View 3 Replies View Related

Android :: Compiling Demo / Final Versions Of Android Application

Nov 1, 2010

Right now I've finished an application that I want to distribute on Android Market. It will have a payed version and a free version with some limited features. While developing it, I was doing obviously just the main project of fully featured release. And now after finished I've included a "boolean" DEMO_VERSION=true that restrict those features. My question is if it's possible to generate both apk from the same project? Or should I create new project with the same source but changing the Java package to tell android market that they're two different applications.

View 1 Replies View Related

Android :: Compile Android Application On 2.1 To Support All Versions?

May 4, 2010

I want my Android application to have maximum reach, and hence want to support all versions V1.5 onwards. I find some features lacking in V1.5 that are available in V2.0 or V2.1. Could I compile on V2.1, and then set minSDK for the application to run on 1.5? Plain logic says 2.1 specific features would not work, but let me know your thoughts. Also, what are some other workarounds? What would "you" normally do in such a situation?

View 2 Replies View Related

Android :: Best Way To Store Application Data / When Data Stored / Data Format Could Change In Future Versions?

Mar 4, 2010

I'm making an Android Java app game (although this question applies to all languages really) and hope to release the first version soon. I'm nervous about how I save data in my game. My problem is that, if in a later update, I decide to store more data or store the same data in a different way, I need to be careful I don't lose or corrupt data for users that upgrade (i.e. I want users to be able to use data created by an old version in the new version, like their high scores from before).For example, say I want to save high scores in version 1.

View 3 Replies View Related

Android :: Launch Market Place With Id Of An Application That Doesn't Exist In The Android Market Place

Mar 25, 2010

I am creating an application that checks the installation of a package and then launches the market-place with its id.

When I try to launch market place with id of an application say com.mybrowser.android by throwing an intent android.intent.action.VIEW with url: market://details?id=com.mybrowser.android, the market place application does launches but crashes after launch.

Note: the application com.mybrowser.android doesn't exists in the market-place.

MyApplication is my application.

CODE:..........

However, when I try to launch the market place for a package that exists in the market place say com.opera.mini.android, everything works. Log for this case:

CODE:..................

View 2 Replies View Related

Android :: Get Application ID Of My App On The Market

Feb 22, 2009

I hope to figure out the direct URL link to my application on the market like http://market:blahblah

I was able to find the application ID previously by going to the UI interface to upload application, and looking at the URL link that can edit the app.

However, this method doesn't seem to work any more because the now the edit URL link contains only the package name and not the app ID.

Any idea how to get the application ID?

View 3 Replies View Related

Android :: Market Application For Pc?

Sep 17, 2010

Wasn't there mention back during the Google conference of a Android media center type of application for the PC. Hate to think of the Itunes but yes, an itunes like application but for Android. Organize our music and other programs on the computer and sync it up. Make searching for applications easier and we can back up our downloaded ups on the pc.

Its great to use our phones as flash drives with plug and go but is there something already on the market or elsewhere that can do what I've mentioned?

View 2 Replies View Related

Android :: Can't Find My Own Application In The Market

May 15, 2010

I just bought an Acer Liquid today, and of course the first application I looked for in the market was my own. I couldn't find it.

View 8 Replies View Related

Android :: Off-Market Application Updates

Jun 24, 2010

I am curious about the procedure for updating an app that was acquired off the market. Do you simply install over your existing app? And if so, what happens to your existing data?Is there a way to tie your installed apps to the market, so it can automatically check for updates? Any information is appreciated.

View 2 Replies View Related

Android :: Cannot Get To My Application In Market As A Developer

Oct 31, 2010

Something really strange happened today and I could really use some help figuring it out. I believe its related to Google's SSO infrastructure, and I don't really know how to contact Google to get my application rescued.

I have a google apps account I used to create the application, its claytantor at sightlyinc dot com not a f...@gmail.com account but its a Google Apps account, so I used it to upload and distribute my application. Today when I was using blogger my account said "do you want to use claytantor at sightlyinc dot com or claytantor at sightlyinc dot com for this account?" what kind of choice is that they are both the same? Well my guess is that somehow I chose the one that locks me out of my Android Market account because when I went to try to upload a new version of my app it thinks I don't have an Android Market account.

Paying the extra 20 bucks wouldn't bug me but there is a version of my software out there that I cant access or manage now, and that *really* bothers me. If I create a new account I will have two versions of mys software floating around the new one and the old one that has been stranded! I cant live with that.

View 3 Replies View Related

Android :: Changing Application Name In Market

Aug 11, 2010

This has come up before, but I'm still not clear. I published my first app last night. It sunk like a stone. I want to change its name. I don't want to force the few people who have downloaded it to get an update. It seems to me that if I:

1. Change the android: label in the manifest to be the new name, and
2. Resubmit it with the same version number

Then the name in the market should change but not force an update. Is this correct?

View 5 Replies View Related

Android :: Launching Application In Market

Sep 30, 2010

I want to launch my application in market. I ahd go to http://market.android.com/publish/signup but there they are asking for Website URL. But i don't have any website then what should I enter there? or is it necessary to have our own website to launch application in market?

View 6 Replies View Related

Android :: Application Not For All Devices In Market

Sep 9, 2010

Today, I placed our new app onto the market store. It can be found by most mobile phones - unfortunately, it cannot be detected by one specific model which is used by one of our customers. It is the Vodafone 845, with a small screen (240x320p) and low density (120 dpi). It's running with Android 2.1, updated version (i.e. SDK 7), and has all the necessary hardware (GPS, cam, and internet access), but, however, doesn't detect the app in the market. I have already tried anyDensity="true". The app is free, not copy protected, and open to all countries. I have the following settings in the manifest:

xmlns:android="xxx"
package="xxx"
android:versionCode="10"
android:versionName="1">
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true".............

View 1 Replies View Related

Android :: Can't Purchase Own Application On Market?

Feb 2, 2010

I just uploaded my application in the market, but I'm not able to purchase it (it's a pay app). I saw here that it seems to be made by design, but then why the error message is Server Error try again? Is there a way to bypass that?

View 3 Replies View Related

Android :: Market Rating On Application

Sep 14, 2010

I woke up this morning to 2 new 1-star rating on my app, which made it 3 total. There were no comments and no purchase cancellations in the last couple of days, so I said to myself WTF, 2 people actually kept the app and gave it a one star? I thought it might be a competitor. But I just looked again and the 2 new 1-stars have disappeared. What is going on with the market?

View 6 Replies View Related

Android :: Wootcheck Application In Market

Jan 14, 2010

I just released a major update to my wootCheck application in the market and feel that it is the best woot checking app available by far. My app checks all of the different woot sites and shows everything you would need to know about the product. It auto-refreshes for wootoffs and is extremely fast. I am currently working on a few new features but if you try it and can think of something you would like to see comment below.

View 17 Replies View Related

Android :: Update Application From Market Later

Sep 30, 2010

Hello! If I shall download application not from Android Market and install it, can I update this application from Market later? This application exist on Market.

View 2 Replies View Related

HTC Hero :: Android Market Application?

Sep 23, 2009

Is anyone using this new app?

New Android Market Application Screenshots : iLuvAndroid - Feeding your Android Addiction with news, reviews and guides

I think only for rooted phones so far? Anyway I can't find it on the normal market app.

View 1 Replies View Related

Android :: Update Application From Market

May 5, 2009

After different testing, I found an issue with the "update method" when installing an application update.

I developped "DilbertDroid", and a lot of people are saying that there is missing some functionnality but the latest version published on the market have this functionnalities.

I suppose that when updating a application, the updater doesn't kill the process related to the application but only update the application files on phone. Result: the old application is still running until you kill the process or reboot the system.

I think it is not very professionnal to tell user to deinstall and then reboot their phone in order to install an update.

My application doesn't have any service running

View 4 Replies View Related







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