Android :: Way To Distribute Content For Application On Market?

Jun 7, 2010

Does the android market support distribution of content packages? Is there any way a dependency structure can be created so that to obtain a content package for the app depends on the app to be installed as well?

Android :: way to distribute content for application on market?


Android :: Strategy To Distribute Application Without Putting On Market

Nov 24, 2010

We are planning on this strategy to distribute our application to clients. We would like to get your your thoughts, if you have done something similar, in terms of whether we are missing something. We have tested this approach and it works.We want to distribute our application to our clients without putting it on the market as we do not want every one to download it. We want our clients to be able to easily get future upgrades to the application. Here is how we are planning to do this:

1. export the apk file using the Eclipse wizard.

2. put this apk file on a website. The user will be able to go to this website on the browser on the phone and install the 1st version of the app.

3. next versions of the app will have an incremented android:versionCode, and android:versionName in the manifest. A button in the settings will point to a link which will have the next version of the app. So to upgrade the user will click on this settings button and download the next version and click on the apk file to replace the old version.All subsequent versions of the app will be signed by the same certificate using the export wizard in Eclipse

View 2 Replies View Related

Android :: How Distribute Paid Application / When Paid Market Is Not Available?

Feb 22, 2010

this question is now obsolete, as Android Market includes much more countries and such services as PayPal Mobile Payments Library are available.I'd like to sell my Android application, but I live in Poland and in my country* Android Market supports only free apps (we cannot sell and we cannot buy too).What is the best way to sell application in such situation? I can accept PayPal money transfers, but I don't know how to distribute APK package without exposing it to getting pirated. Did someone tried it already and succeeded? you may be surprised, paid apps are supported only in 12 countries worldwide.

View 3 Replies View Related

Android :: How Do I Distribute App To Beta Tester Without Using Market?

Apr 14, 2010

I have an early version of my app that I want some testers to take a look at. But I am not ready to put it on Market. How do I distribute it to my testers and how do they install it on their phones. One of the beta testers has a Asus eeePC with Android 2.0 installed and I would like him to try it too.

View 4 Replies View Related

Samsung Galaxy S :: Android Market - No Matching Content In Android Market

Nov 18, 2010

I've just noticed that the Android Market shows a blank page with the message 'No matching content in Android Market'. Yet when I go to specific sections of the Market or do a search, one is able to download and install applications and games just fine. I've only just noticed this happening in the last few days. I'm using an unlocked UK version Galaxy S but my location is Inner Mongolia, China. Would this have anything to do with Android Market not showing content on the front page? The S itself is loaded with Froyo, as downloaded from the XDA forums.

View 2 Replies View Related

Android :: Store Content In Market

Apr 20, 2010

Can I upload content(any type png/jpg) onto android market, which I could download while the application is running.

View 2 Replies View Related

Android :: No Matching Content In Market

Aug 21, 2010

Anyone else seen this on the featured apps page? Games and Apps tabs working ok though. I guess it's a market error.

View 1 Replies View Related

Android :: Uploading Content Onto Market

Apr 20, 2010

Can I upload content(can be anytype jpg/png) other than apk onto android market so that the application could download the content at the first run.

View 2 Replies View Related

Android :: Want Legal Sites Where I Download Market Content?

Oct 21, 2010

Are there any legal sites where I download market content? reason I ask his, I can't find some things on the market... I assume its a compatability issue but if I do it illegally they work on my wildfire. so if I want to do it legally how can I? or am I going to have to stick with illegals if I want the apps I do?

View 6 Replies View Related

HTC Incredible :: No Matching Content In Market?

Jun 23, 2010

Just checking to see if market is working OK for you guys because when I load'er up I'm getting "No matching content in Android Market" messages at start and in various categories.

View 3 Replies View Related

Android :: How To Distribute Expensive App?

Aug 21, 2010

I have a $300 iPhone app that I might like to port to Android.It is for a very narrow set of users, so no matter how low I make the price, I will never sell very many.But for those few users, it is definitely worth it, as evidenced by my iPhone sales.So the $300 price point is necessary. However I have heard that the Google Android Market puts a limit of $200 on apps.I have also heard that it is possible to distribute apps independently of the Market, in which case I suppose I could charge as much as I wanted. But then I would have to devise my own licensing scheme.Are these assumptions right?

View 10 Replies View Related

Android :: How To Distribute Flash Apps?

May 14, 2010

As I know Android Froyo will support Flash 10.1. I just wonder how Flash apps could be distributed on Froyo based device.Will Google allows distribute Flash apps by Android Market?

View 2 Replies View Related

Android :: Distribute App To Customer For Review

Sep 17, 2010

I am developing an Android application for a customer. I want to be able to provide them (no one else) incremental updates but I am not clear what the procedure should be.I don't want them to have to install development tools or root their phone. These are non technical folks who would have no idea how to accomplish root a phone or use a command line interface.When I develop iPhone applications for them this was easy. They just give me the device UDID and I send them a binary that can be drag and dropped into iTunes.How is this done on Android. I have tried loading the application from a web server but the devices says it is not allowed to be loaded because of security reasons. In setting->Applications there is no menu option to "Allow Unknown sources".

View 6 Replies View Related

Android :: How To Distribute Reusable Code In Package?

May 13, 2010

I have developed some reusable android component which is basically a class . This class has some resource dependencies e.g. some png drawables, some xml layouts etc. So this class referenced the auto-generated R file.I would like to distribute this code in a single package like jar file to other developers for use in their applications.I have read that the only possible solution is to distribute code together with all my resources, which others have to copy to their "res" folder (source).So I created a jar file having the class file (say MyClass which is in the package com.xyz.android.app) and resources and tried to use this in my new application.So I added the jar file to my new applications build path using add external jars option in eclipse and copied all the resources to my new application's res folder. (The activity class say MainActivity of my new application is in com.abc.myapplication package, just for the case if it may helpful)

But when I run this new application there is java.lang.ClassCastException in the MyClass class. I tried to debug the application and then I found that in the MyClass class, there is "R cannot be resolved" problem. Then I changed MainActivity's package to com.xyz.android.app (which is not the way, other developers will be happy to do), But again the same problem.But When I just copy the source java file such that both Main Activity.java and MyClass.java are in com.xyz.android.app package then application runs fine.So if I need to distribute such that other users need not to bother these package naming things,how can I accomplish this?

View 3 Replies View Related

Android : Content Provider Is Part Of My Application

Jan 8, 2010

I need to create 3 things:

Content Provider
Service
Application

I'm wondering if these all three will be in one single project, or they will be three different projects?

Also how can I limit my Content Provider to my services and my applications?

View 2 Replies View Related

Android :: Insert In Content Provider - Application Stops

Jul 28, 2010

Look what Im doing. Im getting a SMS message and breaking word by word using the StringTokenizer class.I've done this, but when I try to insert the word in the content provider, the application stops, and the emulator says the application stoped unexpectadly.

I don't know what to do anymore, I've tryied everything you can think about, but i didn't found the answer.
Please Help Me! Check my two classes.

SMS.java Class:

CODE:.....

View 1 Replies View Related

Android :: Evenly Distribute Buttons Across Width Of Linear Layout

Aug 12, 2010

I have a linear layout (oriented horizontally) that contains 3 buttons. I want the 3 buttons to have a fixed width and be evenly distributed across the width of the linear layout.I can manage this by setting the gravity of the linear layout to center and then adjusting the padding of the buttons, but this works for a fixed width and won't work for changing devices or orientations.
<Linear Layout android:id="@+id/LinearLayout01"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:gravity="center">
Button
android:id="@+id/btnOne"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:width="120dip"></Button><Button
android:id="@+id/btnTwo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:width="120dip"></Button>Button
android:id="@+id/btnThree"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:width="120dip"></Button></Linear Layout>

View 2 Replies View Related

Android :: Browser Application To Open And Display Content From Menu

Jul 13, 2009

Here's what I'm attempting to do. I have a menu and when a user selects a particular option in the menu I want the browser application to open and display the web page. However, I cannot seem to do this. My application uses a TabWidget to display its content (which works perefectly) but I cannot for the life of me figure out how to open a link into the browser. I have tried adding a WebView to the TabWidget (but when I request it from the view by findViewById(...) I get a null.

I've also tried creating a separate view and performing a setContentView(...) and then I get an exception. I've also tried using an intent I've seen demonstrated on this group. It seems like this should be fairly easy, but I must be missing anything. I've looked at the sample apps as well as the Apps-for- android samples and have followed them to the T, yet still to no avail I cannot get the browser to open (or anything like that).

View 4 Replies View Related

Android : Content Provider In My Code - Application Has Stopped Unexpectedly

Sep 11, 2009

I am a newbie to android programming. I want to search the name of contact member by taking phonenumber from the user. I dont know whats the issue and when run it just displays error .. "Application has stopped unexpectedly !".

My code is like this ...

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

View 2 Replies View Related

General :: How To Edit Application Content

Jun 28, 2012

i want to create just a application in which i put some good wallpapers. but i dont know how to do . then i think editing a application is easy then making a new application . on google play there are different applications which contain only wallpapers like glaxy s2 wallpapers etc. so i want to edit it just want to changey its name and all of its wallpaper with wallpaper of my choice.

View 2 Replies View Related

Motorola Droid :: Official Facebook Application - News Feed (No Content)

Aug 24, 2010

I am able to access my photos, friends etc., but when I click on News Feed, I get "No Content. An error has occurred while fetching data. MalformedJSON". Deleted/re-installed and made no difference.

View 2 Replies View Related

Android :: Switching Content Providers For Same Content URI

Aug 12, 2009

This may seem like a stupid question but I need to be sure. I was wondering if it was possible to pro-grammatically change the Content Provider used when making a query given a Content URI. The reason being I need to know if it's possible to force the Calendar/Contacts applications to read from a different database via a different Content Provider temporarily while my application is running, so that I can reuse those applications to display my own data. Since the Content URI s are hard coded in each of these applications the only way it might be possible is if we could somehow temporarily change the Content Provider used for a given URI. I know this probably isn't possible, I just need to show it isn't. Could someone confirm this can't be done?

View 2 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 : Content Provider - No Link Between Content Provider And Its CONTENT_URI Declared In Another Class

Mar 1, 2010

I am having a hard time understanding content providers. In the notepad example and others, the content provider never even declares its CONTENT_URI anywhere inside itself, yet the docs say to publicly declare this. It's declared in a different class. So when an activity queries a content provider with a CONTENT_URI, how does Android know which one I want. I see no link between a content provider and its CONTENT_URI declared in another class.

I also don't how to think about intents and content providers. I know that you don't call an intent on a content provider. But an activity queries a content provider without an intent, and an activity has a mimetype attribute in the manifest that would seem to tie it to a content provider.

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







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