Re: [android-developers] Re: Android testing

2012-05-31 Thread Shane Isbell
wrote: Shane Isbell is back; haven't heard in a while! On May 30, 3:37 pm, Shane Isbell shane.isb...@gmail.com wrote: Hi all, I'm starting work on an android integration testing framework, called Huntsville: https://github.com/sisbell/huntsville Currently, the project creates

[android-developers] Android testing

2012-05-30 Thread Shane Isbell
Hi all, I'm starting work on an android integration testing framework, called Huntsville: https://github.com/sisbell/huntsville Currently, the project creates a DeviceAssert (extending JUnit Assert) class that asserts things like the existence of files on device, environmental properties on the

Re: [android-developers] Re: How to detect HTML tag?

2011-08-09 Thread Shane Isbell
http://download.oracle.com/javase/6/docs/api/java/lang/String.html#replace%28java.lang.CharSequence,%20java.lang.CharSequence%29 On Mon, Aug 8, 2011 at 10:43 PM, ndiiie90 rnd...@gmail.com wrote: Oh sorry that is not what i mean. What i mean is to replace all tags in data that is retrieved

Re: [android-developers] What should I use for common parts of UI in Android application?

2011-08-09 Thread Shane Isbell
In general, it is a good idea to start leveraging fragments. This will make it easier to rebuild the UI on tablets. Fragments allows reuse and well as storing of history state of each component. If you are only interested in handsets and don't care about component reuse or history state, then

Re: [android-developers] IllegalStateException: Fragment not added in ActionBarTabs example

2011-05-19 Thread Shane Isbell
I've run into this on occasion, I surrounded it with a general Exception catch to handle this, which seemed to have no side affects for my application, as to whether this is platform bug, who knows? Without the source code to look at, it is anyone's guess. Shane On Thu, May 19, 2011 at 11:28 AM,

[android-developers] RemoteViews.setRelativeScrollPosition Example?

2011-03-30 Thread Shane Isbell
Does anyone have any working example of RemoteViews.setRelativeScrollPosition in Honeycomb? I've enumerated some best guesses without success. Thanks, Shane -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Amazon AppStore Release

2011-03-22 Thread Shane Isbell
Link to download store: http://amzn.to/getamazonappstore It looks pretty slick in terms of search and recommendations, a little clunky for app detail page. Overall, it feels much better than Android Market in terms of discovering content. Free angry birds app today, Shane -- You received this

Re: [android-developers] Endless scrolling in GridView

2011-03-18 Thread Shane Isbell
You don't need to customize the view. Implement pagination of the xml doc on the server. When the user reaches the end of the data in your app, have android pull down another page of data and then add the respective images to your adapter. Shane On Fri, Mar 18, 2011 at 2:20 PM, Abhishek Talwar

[android-developers] Android Library for Azure?

2011-03-04 Thread Shane Isbell
Does anyone on this list know of a Windows Azure library for Android? I've looked around but only found http://www.windowsazure4j.org/ which has a dom4j dependency (and an number of transitives dependencies on that, with some licenses that I can't use). Thanks, Shane -- You received this

Re: [android-developers] Android Library for Azure?

2011-03-04 Thread Shane Isbell
On Fri, Mar 4, 2011 at 2:37 PM, Nasif Noorudeen nas...@gmail.com wrote: you have to ask this question in there website They don't provide such a library. That's why I'm asking here. Shane -- You received this message because you are subscribed to the Google Groups Android Developers group.

Re: [android-developers] Re: Market package name on Xoom?

2011-03-01 Thread Shane Isbell
On Tue, Mar 1, 2011 at 9:15 AM, Indicator Veritatis mej1...@yahoo.comwrote: The way you reach your conclusion from your premises is so illogical, you are casting doubt on your own ability to think logically enough to be a competent programmer. The real reason Dianne has quite a following is

[android-developers] Market package name on Xoom?

2011-02-28 Thread Shane Isbell
It looks like the old way of opening android market doesn't work on Xoom. loadIntent.setClassName(com.android.vending, com.android.vending.AssetBrowserActivity); Anyone know what the new package-name/class is? Thanks, Shane -- You received this message because you are subscribed to the

Re: [android-developers] Market package name on Xoom?

2011-02-28 Thread Shane Isbell
I don't want to open to a publisher or application. I want to only open to the market. Shane On Mon, Feb 28, 2011 at 11:14 AM, Marcin Orlowski webnet.andr...@gmail.comwrote: loadIntent.setClassName(com.android.vending, com.android.vending.AssetBrowserActivity); Why you got this way? As

Re: [android-developers] Market package name on Xoom?

2011-02-28 Thread Shane Isbell
...@gmail.comwrote: If the package name didn't change you can use this to get the intent to launch the market: http://developer.android.com/reference/android/content/pm/PackageManager.html#getLaunchIntentForPackage%28java.lang.String%29 On Mon, Feb 28, 2011 at 12:19 PM, Shane Isbell shane.isb

Re: [android-developers] Market package name on Xoom?

2011-02-28 Thread Shane Isbell
On Mon, Feb 28, 2011 at 12:00 PM, Dianne Hackborn hack...@android.comwrote: Don't hard-code package names. This is fragile, as you've already found. Don't continue doing it. You'll just break again sometime in the future. If there is no public API to do something so simple, then opening

Re: [android-developers] Market package name on Xoom?

2011-02-28 Thread Shane Isbell
: boy you have balls! she's only the one who makes this OS happen... show some respect... On Feb 28, 2011 3:17 PM, Shane Isbell shane.isb...@gmail.com wrote: On Mon, Feb 28, 2011 at 12:00 PM, Dianne Hackborn hack...@android.com wrote: Don't hard-code package names. This is fragile

Re: [android-developers] Re: Market package name on Xoom?

2011-02-28 Thread Shane Isbell
On Mon, Feb 28, 2011 at 3:03 PM, Justin Anderson magouyaw...@gmail.comwrote: None of that matters... It's just a simple matter of etiquette. When asking for help you don't have to be rude if you don't like the answer. And if you feel it doesn't apply then great... don't apply it! The OP

Re: [android-developers] Honeycomb + landscape + Mac = will not stay in landscape

2011-02-24 Thread Shane Isbell
I had the same problem. This is what I did before the emulator became completely useless with the last update: if(forceLandscape) { setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE); } else {

Re: [android-developers] Re: SDK 11 is the slowest yet

2011-02-23 Thread Shane Isbell
I completely dumped the emulator a couple of years ago, but with honeycomb, not much choice, it's all been very slow and painful. On the plus side the eclipse-plugin is getting a lot more functional. After running the latest updates this morning (android and eclipse), it takes three or four

Re: [android-developers] Re: Honeycomb SDK

2011-02-10 Thread Shane Isbell
Even before the 2.3.3 SDK update, the Build.VERSION.SDK_INT on the 3.0 emulator said 10. So I assumed that SDK 10 was honeycomb preview and that the final release of honeycomb would be SDK 11. But after updating, the SDK now says 2.3.3 is SDK 10, emulator (3.0) also says 10. I don't think Google

[android-developers] AsyncTask in Honeycomb

2011-02-04 Thread Shane Isbell
FYI for anyone having similar problems with running apps in honeycomb preview SDK (Mac). The AsyncTask in the preview of honeycomb was not executing, so I popped in a slightly modified 2.2 version into my app and everything works perfectly. Shane -- You received this message because you are

Re: [android-developers] AsyncTask in Honeycomb

2011-02-04 Thread Shane Isbell
On Fri, Feb 4, 2011 at 10:52 AM, Romain Guy romain...@android.com wrote: The Honeycomb preview uses a serialized queue to execute AsyncTasks, so they will execute one after the other. Thanks, that explains it then. I block on one task inside another task, so that would cause the apparent hang.

Re: [android-developers] Re: AsyncTask in Honeycomb

2011-02-04 Thread Shane Isbell
On Fri, Feb 4, 2011 at 11:24 AM, Streets Of Boston flyingdutc...@gmail.comwrote: Why do i really really really want a serialized queue? Our app uses AsyncTasks to complete HTTP requests. Multiple requests can happen at the same time and in some situations we really really really want it that

Re: [android-developers] app causes reboot on DroidX after activity gets destroyed - anybody having similar issues?

2011-02-04 Thread Shane Isbell
From my experience, the DroidX doesn't call onMemory, it just starts destroying and restarting apps when the device gets low. There is no FC when it does this. I'd start there with checking your usage. Of course, that shouldn't cause the entire device to reboot, but DroidX doesn't handle resources

Re: [android-developers] Re: New MiKandi Launch with Support For Paid Apps

2010-11-23 Thread Shane Isbell
...@gmail.com wrote: That video is so cool, it almost makes me want to develop an app for your App Store! On Nov 21, 10:32 am, Shane Isbell shane.isb...@gmail.com wrote: New MiKandi launch, check out the promotional vid: http://www.youtube.com/watch?v=s3qNsDmRWlo If you guys have paid

[android-developers] Re: New MiKandi Launch with Support For Paid Apps

2010-11-22 Thread Shane Isbell
And just out is the MiKandi App Store demo video: http://www.youtube.com/watch?v=Qk7Kbc8S12I It shows how the new client works with virtual currency and the theater section. On Sun, Nov 21, 2010 at 10:32 AM, Shane Isbell shane.isb...@gmail.comwrote: New MiKandi launch, check out

[android-developers] New MiKandi Launch with Support For Paid Apps

2010-11-21 Thread Shane Isbell
New MiKandi launch, check out the promotional vid: http://www.youtube.com/watch?v=s3qNsDmRWlo If you guys have paid apps, publish them and start making some money. Shane -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] Re: Google TV

2010-10-25 Thread Shane Isbell
Howard, any feedback on Google TV from Logitech? The reviews on Amazon are very mixed... On Wed, Oct 13, 2010 at 7:40 AM, Shane Isbell shane.isb...@gmail.comwrote: On Tue, Oct 12, 2010 at 11:59 PM, Howard M. Harte hhar...@gmail.comwrote: This is what I received from Logitech yesterday

Re: [android-developers] Re: Google TV

2010-10-13 Thread Shane Isbell
On Tue, Oct 12, 2010 at 11:59 PM, Howard M. Harte hhar...@gmail.com wrote: This is what I received from Logitech yesterday about my preorder: Thank you for your recent pre-order from Logitech. This e-mail is to inform you that the product availability date has been delayed. Your pre-ordered

Re: [android-developers] Re: Google TV

2010-10-12 Thread Shane Isbell
The announcements I read was an SDK isn't being released yet for the Google TV (I also have one on order). Google is releasing the Android Market on the revue sometime in QI of next year, so it's got to happen by then if they want Google TV specific apps. My hope is someone will hack the system

Re: [android-developers] Re: Google TV

2010-10-12 Thread Shane Isbell
Does anyone know the release date? I could have sworn that Amazon said it was October 15th, but now I just see on my order - We need a little more time to provide you with a good estimate. On Tue, Oct 12, 2010 at 1:10 PM, Shane Isbell shane.isb...@gmail.comwrote: The announcements I read

Re: [android-developers] Amazon android market. Anyone take the offer?

2010-10-04 Thread Shane Isbell
Niko, I didn't sign any NDA with Amazon, but there is a lot of public information out there about the Amazon Android Store, coming from people leaking information out to various sites. Once the information becomes public, the NDA in regards to you talking about public information is not

Re: [android-developers] Re: Amazon android market. Anyone take the offer?

2010-10-04 Thread Shane Isbell
On Mon, Oct 4, 2010 at 1:41 PM, Nathan critter...@crittermap.com wrote: Registration may not be affordable for free apps, but I don't think Amazon really sees free apps as a priority. Can't see why they would. Free apps are a priority because that is what drives users to the store. If users

Re: [android-developers] Re: Amazon android market. Anyone take the offer?

2010-10-04 Thread Shane Isbell
On Mon, Oct 4, 2010 at 3:07 PM, Nathan critter...@crittermap.com wrote: They will get free apps without it being their priority. The $99 isn't per app, is it? A developer with paid and free apps will probably put both in there. And free apps that generate sufficient revenue through ads etc.

Re: [android-developers] Re: Amazon android market. Anyone take the offer?

2010-10-04 Thread Shane Isbell
On Mon, Oct 4, 2010 at 5:02 PM, Nathan critter...@crittermap.com wrote: Would an Amazon customer not buy a device because it only has 10,000 apps instead of 100,000? 10K of apps is a lot but if it were only 1K, no I don't many think people would buy it. Based on your estimates,

Re: [android-developers] Re: Amazon | xxx - Business Opportunity

2010-09-29 Thread Shane Isbell
, Shane Isbell shane.isb...@gmail.com wrote: Personally, I'd use Amazon over AndroidMarket, if the rating and comment system was any where near the quality Amazon has on their primary site. Personally (as a person who wants to get paid for work), I'd prefer any mechanism that's built

Re: [android-developers] Re: Amazon | xxx - Business Opportunity

2010-09-29 Thread Shane Isbell
On Wed, Sep 29, 2010 at 1:21 PM, Doug beafd...@gmail.com wrote: On Sep 29, 12:56 pm, Shane Isbell shane.isb...@gmail.com wrote: As more details emerge: 1) only US customers; 2) $99 registration; 3) only Amazon approved devices - it's a no-go in my book. What advantage could this provide

Re: [android-developers] Re: Amazon | xxx - Business Opportunity

2010-09-29 Thread Shane Isbell
entry fee, and terms that appear much more restrictive and even more developer unfriendly than the Android market, Sigh. For a short while, I hoped we might finally see a viable alternative to the Android market. No such luck, it seems. On Sep 29, 9:56 pm, Shane Isbell shane.isb...@gmail.com

Re: [android-developers] Re: Amazon | xxx - Business Opportunity

2010-09-25 Thread Shane Isbell
What kind of impact do you guys think this will have on the smaller, alternative Android Markets? Is it a killer? Amazon has a global payment system, so it will reach most countries. Personally, I'd use Amazon over AndroidMarket, if the rating and comment system was any where near the quality

Re: [android-developers] Re: appbucket: all apps for $9.99 per year, are we just going to watch?

2010-09-18 Thread Shane Isbell
less about such issues. Best to seek legal action another way. -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

Re: [android-developers] Re: Market alternatives

2010-09-08 Thread Shane Isbell
+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ -- You received this message because you

[android-developers] Open-Source Repository

2010-08-30 Thread Shane Isbell
. For SlideME, I had a simple, custom format for the feeds, but am thinking to use JSON or something similar to standardize it. Feel free to open any issues on github, submit patches, follow, make comments, etc. After a few good patches, I usually offer people to become a committer on the project. -- Shane

[android-developers] Command line build error: 'Unable to get buffer of resource asset file'

2010-08-30 Thread Shane Isbell
sizes for various platforms? Thanks, -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com

[android-developers] Creating Icons?

2010-08-25 Thread Shane Isbell
to get an idea of any method or service that may be popular among devs for generating icons. -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group

Re: [android-developers] Re: Chilling news: Oracle sues Google over Android

2010-08-13 Thread Shane Isbell
...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ -- You received this message because you are subscribed to the Google Groups Android Developers group

Re: [android-developers] Re: Eclipse library project problems

2010-08-12 Thread Shane Isbell
...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ -- You received this message because you are subscribed

Re: [android-developers] Chilling news: Oracle sues Google over Android

2010-08-12 Thread Shane Isbell
@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http

Re: [android-developers] An alternative for android-market-api

2010-08-09 Thread Shane Isbell
To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com

Re: [android-developers] Re: Website for your app, how important do you feel it is?

2010-08-08 Thread Shane Isbell
developing? So it's not a matter of ignoring the larger base of users, it's just a matter of focusing on users who want to talk about your application and give feedback in constructive ways. -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ -- You received this message

Re: [android-developers] androidconnector and androidpublisher

2010-08-08 Thread Shane Isbell
-developers%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Re: androidconnector and androidpublisher

2010-08-08 Thread Shane Isbell
to use SlideME at all, I've explained the reasons before on the android lists. -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

Re: [android-developers] Re: Website for your app, how important do you feel it is?

2010-08-07 Thread Shane Isbell
and music. So something like ZenTimer would likely do well there. -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

Re: [android-developers] Re: Website for your app, how important do you feel it is?

2010-08-06 Thread Shane Isbell
this group, send email to android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket

Re: [android-developers] Re: Website for your app, how important do you feel it is?

2010-08-06 Thread Shane Isbell
this group, send email to android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket

Re: [android-developers] Re: New to android finally leaving Windows !!!

2010-08-04 Thread Shane Isbell
/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from

Re: [android-developers] Re: My Eclipse 3.5 always lag and have to force close - why?

2010-08-04 Thread Shane Isbell
from this group, send email to android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com

Re: [android-developers] Extending multiple classes

2010-07-30 Thread Shane Isbell
%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ -- You received this message because you are subscribed to the Google Groups Android

[android-developers] AppFriend for Facebook/Twitter (Social discovery of apps)

2010-07-30 Thread Shane Isbell
: http://andappstore.com/AndroidApplications/apps/AppFriend_For_Facebook For a list of currently shared apps http://apps.facebook.com/zappmarket/ Have fun, -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ -- You received this message because you are subscribed

Re: [android-developers] Intent for following a user on Twitter?

2010-07-30 Thread Shane Isbell
...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ -- You received this message because you

Re: [android-developers] Re: Android Market Licensing: Now Available!

2010-07-30 Thread Shane Isbell
installed on SD card are not going to be able to store private data (Context.MODE_PRIVATE) on device? -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

Re: [android-developers] Re: Licensing

2010-07-28 Thread Shane Isbell
to android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ -- You received

Re: [android-developers] Android Market Licensing: Now Available!

2010-07-27 Thread Shane Isbell
this group, send email to android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket

Re: [android-developers] Licensing

2010-07-27 Thread Shane Isbell
at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers

Re: [android-developers] Licensing

2010-07-27 Thread Shane Isbell
On Tue, Jul 27, 2010 at 11:20 AM, Raymond C. Rodgers raym...@badlucksoft.com wrote: On 7/27/2010 2:11 PM, Shane Isbell wrote: It's addressing a direct need of developers. From my perspective, I wonder what the impact will be for alternative stores, as they can't use the service. http

Re: [android-developers] Re: Licensing

2010-07-27 Thread Shane Isbell
are bypassed if there is no Android Market (!) since this is down to the app's licensing implementation... On Jul 27, 8:20 pm, Raymond C. Rodgers raym...@badlucksoft.com wrote: On 7/27/2010 2:11 PM, Shane Isbell wrote: It's addressing a direct need of developers. From my perspective, I

Re: [android-developers] Licensing

2010-07-27 Thread Shane Isbell
On Tue, Jul 27, 2010 at 11:53 AM, Trevor Johns trevorjo...@google.comwrote: On Tue, Jul 27, 2010 at 11:42 AM, Raymond C. Rodgers raym...@badlucksoft.com wrote: On 7/27/2010 2:31 PM, Shane Isbell wrote: The implementation that Google offers also embeds code, which is inherently insecure

Re: [android-developers] Nexus One Testing

2010-07-19 Thread Shane Isbell
This problem is solved, thanks for everyone who pitched in and helped. It was an NPE and had to do with the PackageInfo containing some null fields on certain distributions of N1s. On Sun, Jul 18, 2010 at 2:30 PM, Shane Isbell shane.isb...@gmail.comwrote: Thanks for checking. Maybe it's

[android-developers] Nexus One Testing

2010-07-18 Thread Shane Isbell
on is really simple, so I'm not sure what the incompatibility could be, as it works on G1 and Magic. Thanks for any help. -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ -- You received this message because you are subscribed to the Google Groups Android Developers group

Re: [android-developers] Nexus One Testing

2010-07-18 Thread Shane Isbell
18, 2010 at 2:05 PM, Shane Isbell shane.isb...@gmail.com wrote: Can someone with a Nexus One download AppFriend from android market (qr code - http://www.zappmarket.com/catalog/27) and give me a stack trace of the error message? I've got reports coming in that it crashes on startup

Re: [android-developers] Re: App Inventor to Market

2010-07-16 Thread Shane Isbell
to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell

Re: [android-developers] Re: App Inventor

2010-07-12 Thread Shane Isbell
this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

Re: [android-developers] oh no - lost my keystore

2010-07-08 Thread Shane Isbell
@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http

[android-developers] Mobspot Facebook App

2010-07-07 Thread Shane Isbell
). If you guys want to get in on this for Android head over to http://apps.facebook.com/zappmarket. MobSpot has 35 apps, ZappMarket has 12. Do you still want to let all the iPhone guys beat us poor Android developers? -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ http

Re: [android-developers] Re: paypal mobile payment allowed?

2010-07-06 Thread Shane Isbell
@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http

Re: [android-developers] Re: paypal mobile payment allowed?

2010-07-05 Thread Shane Isbell
+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ http://twitter.com/zappandroid -- You received

Re: [android-developers] Re: paypal mobile payment allowed?

2010-07-05 Thread Shane Isbell
://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ http://twitter.com/zappandroid -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

Re: [android-developers] Re: Android paid apps in Ireland

2010-07-02 Thread Shane Isbell
with ZappMarket! Thanks! Bryan On Jul 1, 4:35 pm, Shane Isbell shane.isb...@gmail.com wrote: Thanks for taking a look, Steve. Just to throw some stats your way: Facebook has 400 million active users and 70% of the users are outside of the US. There are also 100 million users that access FaceBook

Re: [android-developers] Re: Android paid apps in Ireland

2010-07-01 Thread Shane Isbell
of. So from a commercial point of view, it may well turn out to be the most International player at the top end of the service providers Good luck to you with it. Steve On Jun 29, 2:26 pm, Shane Isbell shane.isb...@gmail.com wrote: If you want to sell Android apps into the facebook community

Re: [android-developers] Re: TCP IP connection via Mobile Network

2010-07-01 Thread Shane Isbell
%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] pirated apps hosted on Google Sites :-(

2010-07-01 Thread Shane Isbell
at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers

Re: [android-developers] Filter for crapps (crap apps)

2010-06-28 Thread Shane Isbell
this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

Re: [android-developers] Re: Android paid apps in Ireland

2010-06-28 Thread Shane Isbell
://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://apps.facebook.com/zappmarket/ -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers

Re: [android-developers] [Copyright question] Can I use Mozart's music in my Android apps/games?

2010-06-26 Thread Shane Isbell
...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://twitter.com/sisbell http://twitter.com/zappstore http://zappmarket.com -- You received this message

Re: [android-developers] Re: Avoiding GPL

2010-06-25 Thread Shane Isbell
@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket

Re: [android-developers] Uploading Adult apps.

2010-06-10 Thread Shane Isbell
%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://twitter.com/sisbell http://twitter.com/zappstore http://zappmarket.com -- You received this message because you

Re: [android-developers] Maven and Android

2010-06-03 Thread Shane Isbell
%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://twitter.com/sisbell http://twitter.com/zappstore http://zappmarket.com -- You received this message because you

Re: [android-developers] Can't sell because I am Canadian eh?

2010-05-19 Thread Shane Isbell
...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://twitter.com/sisbell http://twitter.com/zappstore http://zappmarket.com -- You received this message

[android-developers] Forward Locking and ZappMarket

2010-05-18 Thread Shane Isbell
be equivalent to turning off forward-lock on the Android market. Thoughts? -- Shane Isbell (Founder of ZappMarket) http://twitter.com/sisbell http://twitter.com/zappstore http://zappmarket.com -- You received this message because you are subscribed to the Google Groups Android Developers group

Re: [android-developers] Re: APKTool - decoding our apps

2010-05-13 Thread Shane Isbell
to protect the applications. -- Shane Isbell (Founder of ZappMarket) http://twitter.com/sisbell http://twitter.com/zappstore http://zappmarket.com -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers

Re: [android-developers] Re: APKTool - decoding our apps

2010-05-13 Thread Shane Isbell
...@googlegroups.comandroid-developers%2bunsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://twitter.com/sisbell http://twitter.com/zappstore http://zappmarket.com -- You received this message

Re: [android-developers] Re: I've found a way to stop piracy of my apps

2010-05-09 Thread Shane Isbell
is completely off target. As members of this community know, I come out and say what I mean. If I had a problem with SlideLock, I would have said it. Do you do work for SlideME by the way? Thanks, -- Shane Isbell (Founder of ZappMarket) http://twitter.com/sisbell http://twitter.com/zappstore

Re: [android-developers] Re: I've found a way to stop piracy of my apps

2010-05-09 Thread Shane Isbell
On Sun, May 9, 2010 at 5:23 PM, Shane Isbell shane.isb...@gmail.com wrote: On Wed, May 5, 2010 at 2:49 PM, Marcut Andrei andreimar...@gmail.comwrote: Shane, You must be using your signature for the same? Looks like you are just trying to cast some vague doubts on SlideLock and SlideME

Re: [android-developers] Re: I've found a way to stop piracy of my apps

2010-05-05 Thread Shane Isbell
anything with its own technologies? Looks as though they are just trying to cast some vague doubts on AAL and KeyesLabs, without understanding of what KeyesLabs is doing or the problem they are trying to solve. -- Shane Isbell (Founder of ZappMarket) http://twitter.com/sisbell http://twitter.com

Re: [android-developers] help! my phone keeps buying apps by itself!

2010-04-23 Thread Shane Isbell
On Fri, Apr 23, 2010 at 2:41 PM, Ana Gonzalez aigonzalez1...@gmail.comwrote: OK so at first I thought that I had bought an application by accident an just requested for the refund. Everything was fine but then I kept getting emails thanking me for purchasing apps which I would immediately

Re: [android-developers] Re: Selling outside the Android Market-- Use Google Checkout to sell direct from website??? SlideMe.Org??

2010-04-22 Thread Shane Isbell
, visit this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://twitter.com/sisbell http://twitter.com/zappstore http://zappmarket.com -- You received this message because you are subscribed to the Google Groups Android Developers group

Re: [android-developers] No place in Google Checkout to set international tax rates. Do we owe? How to Pay?

2010-04-21 Thread Shane Isbell
this group at http://groups.google.com/group/android-developers?hl=en -- Shane Isbell (Founder of ZappMarket) http://twitter.com/sisbell http://twitter.com/zappstore http://zappmarket.com -- You received this message because you are subscribed to the Google Groups Android Developers group

Re: [android-developers] Re: Selling outside the Android Market-- Use Google Checkout to sell direct from website??? SlideMe.Org??

2010-04-19 Thread Shane Isbell
On Mon, Apr 19, 2010 at 5:02 AM, George | SlideME george.slid...@gmail.comwrote: Shane, one request. You need to retract now in public any such accusations that I and SlideME are operating a dishonest operation. I never said SlideME was dishonest. I said you, as an individual, are dishonest

Re: [android-developers] Re: Selling outside the Android Market-- Use Google Checkout to sell direct from website??? SlideMe.Org??

2010-04-19 Thread Shane Isbell
I'll be the first one to give out a suggestion: generate the invoice automatically into a pdf from the SlideME portal. That way you can be sure it is right. Doing manual copying and pasting of transactions seems to be a big hurdle here. On Mon, Apr 19, 2010 at 8:44 AM, Shane Isbell shane.isb

Re: [android-developers] Re: Selling outside the Android Market-- Use Google Checkout to sell direct from website??? SlideMe.Org??

2010-04-18 Thread Shane Isbell
On Sat, Apr 17, 2010 at 7:57 PM, George | SlideME george.slid...@gmail.comwrote: Wish to also say thank you to Paul for uploading his application to SlideME, considering the negativity of this thread from an ex-partner. I am sure Paul and many others will be well looked after as best as we

Re: [android-developers] Re: Selling outside the Android Market-- Use Google Checkout to sell direct from website??? SlideMe.Org??

2010-04-18 Thread Shane Isbell
On Sun, Apr 18, 2010 at 12:04 AM, Shane Isbell shane.isb...@gmail.comwrote: On Sat, Apr 17, 2010 at 7:57 PM, George | SlideME george.slid...@gmail.com wrote: Wish to also say thank you to Paul for uploading his application to SlideME, considering the negativity of this thread from an ex

  1   2   3   >