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.

Android :: How do I distribute app to beta tester without using Market?


Android :: How To Deploy Application To Beta Tester Devices

Jun 26, 2010

My android app is not in the app store yet. Is it possible to send my app to someone, and they install it on their device. Something like iphone AdHoc?

View 3 Replies View Related

Motorola Droid :: Beta Tester Needed To Test App Proximity Sensor

Dec 29, 2009

Looking for someone with a droid to test an update to my app Proximity Sensor.

View 3 Replies View Related

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?

View 1 Replies View Related

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 :: Unable To Find Home++ Beta On Market / Way To Get

Jan 19, 2010

I would like to to try this but have not been able to find it on the market. I am one of the unlucky ones to still be on 1.5...could this be the reason why?

View 2 Replies View Related

HTC Incredible :: SwiftKey Beta Keyboard In Market

Jul 14, 2010

Was formerly using Swype and loved it, but this new keyboard is legit! It practically reads your mind and predicts the next word for you before you even start typing it. Not sure if I'm going to stick with it yet, but definitely going to give it a dry run for a bit.

View 40 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 :: 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 :: Need Nexus One Tester With LogCat

Mar 9, 2010

I am trying to figure out why my app forces close immediately on a nexus one (recurring comment which is dragging my rating down). Ironically, I heard a rumor that if I had just a half star more (up to 3.5 from 3), I would qualify to get a free nexus one from google. If anybody has a nexus one and can connect it up to get the logcat dump of the stack trace of the error. You can find my app by searching for "Compass Ball" on the market.

View 11 Replies View Related

HTC Desire :: Android Speed Tester - Mobile Broadband

Nov 15, 2010

thinkbroadband.com have made available an android speed tester. I always thought my mobile broadband speeds were bad: now I have confirmation. Both upload and download were 0.02mbps. (My wifi speed was, as I expected, my normal 9mbps.) Mobile broadband is really poor - hardly usable.

View 35 Replies View Related

LG Ally :: Tester In IRC Now For New Recovery?

Aug 30, 2010

I need a tester in IRC for ally recovery with new features. I no longer have the loaner ally to test on. Its 9:45 est now and I'll be on for the next hour or so. Join #lgally on freenode to help.

View 3 Replies View Related

HTC Incredible :: App Alert SD Card Speed Tester

Jul 20, 2010

With all the talk in this forum of SD cards & class differences, I thought this was worth passing along (Available free in the Market)I came across this app & tested my SD card. Sure enough it detected my Class 6 card, etc.SD Card Speed Tester - Android app on AppBrain I'm using a Centron 16GB Micro SD HC card 27% full

View 32 Replies View Related

Motorola Droid :: DGT Compass - Need Phone Tester

Dec 27, 2009

I've recently published a new release of my compass "DGT Compass" but unfortunately. I'm receiving some negative feedback from Droid owners. Not very useful those feedbacks just saying "it doesn't work on Droid!". I would appreciate more details from some Droid tester.

View 7 Replies View Related

Motorola Droid :: Need Application Tester For Phone

Feb 4, 2010

APPLICATION TESTED.

View 4 Replies View Related

Motorola Milestone :: Test New App On Phone Device / Want Tester

Feb 4, 2010

Could someone test my new application on Motorola Milestone device? Please send private message if you can help.

View 12 Replies View Related

General :: App That Makes Touches Visible - Not Touch Tester App

Apr 11, 2014

I am looking for an app, that makes the touches visible.

I do not mean a Touch-Test App, but one that creates an Overlay and displays the touches, with variable graphics.

Something like that, what can be activated in the developer options but with variable Graphics, not such a simple circle.

View 1 Replies View Related

Motorola Droid :: Need Typing Speed Tester App For On Screen Keyboard

Jan 25, 2010

Is there an app for testing typing speed using the on screen keyboard? I have one for the physical keyboard (txtspeed) and I am a pathetic 12WPM, but wonder what I get on the on screen one.

View 6 Replies View Related

Sprint HTC Hero :: Radio / WiFi Frequency Tester - App To Shows What Frequencies Present Near Phone?

Jan 27, 2010

Does anyone know of an app that can test what frequencies are being used in the area? I'm trying to figure out if something is interfering with my wireless router, and if so what it is. I've got "WiFi analyzer", but that doesn't show anything other than wireless signals directly from routers, even though a cordless phone runs on the same basic frequency.

In other words, I'd like to find an app that shows what frequencies are present near my phone, including what my phone is putting out. Is that possible?

View 1 Replies View Related

Android :: Audible Beta Available

Jun 5, 2010

If you've been waiting for audible to hit android like I have, then I have some good news if you subscribe to the US audible site.Unfortunately, it only supports the american site so far, but apparently the other sites are coming soon. I'm still downloading a book atm, but from what I've seen, the app is pretty sweet.

View 6 Replies View Related

Android :: Adobe Air Beta

Sep 24, 2010

Found this link on another forum. Adobe Air 2.5.0.1653 Adobe.Air.apk

View 1 Replies View Related

Android :: Hi Yahoo Beta App

Feb 7, 2010

I downloaded the hi yahoo beta app. And try to add my friends add it keeps saying wait for group. And I wait and nothing happens.

View 2 Replies View Related

Android :: Vlingo In Car Beta

Nov 16, 2010

First of all, I swear I did a search, but I can't come up with an answer. I am using the Vlingo in car beta, and it actually listens to me most of the time. The only thing I can't do is get it to answer a call. I thought you could say "answer" and the call would pick up. Am I wrong? Is it because I'm still running 2.1 (Tmo Vibrant)? Does this work in 2.2? Any tips you have would be appreciated.

View 9 Replies View Related

Android :: Non Beta Swype For EVO?

Aug 21, 2010

When will the non beta swype be available for the EVO? It's crazy that the X and Epic gets it.

View 8 Replies View Related

Android :: Swype Beta On G1

Jun 16, 2010

I downloaded the beta swype for my G1 (yes i know time for a new phone thats coming soon) and i got it to come up when im searching the internet or google but it wont type anything i tried swyping a bunch of different words and all i got was the beep saying it didnt register. will it not work on my G1? its still stock rom.

View 1 Replies View Related

Android :: Link To New Beta.apk?

Jun 15, 2010

Anyone have a link to the new beta .apk? 5612 expired today.

View 49 Replies View Related







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