[android-developers] Re: Advice

2016-02-27 Thread Shane Carr
> > I liked the big nerd ranch book on amazon. > I liked this to get started, very organized. http://developer.android.com/training/index.html I also used a lot of youtube and pluralsight. -- You received this message because you are subscribed to the Google Groups "Android Developers"

[android-developers] Re: Advice - news app

2016-02-27 Thread Shane Carr
I have only written one large android application. In my experience volley was outstanding. http://developer.android.com/training/volley/index.html. I grabbed that from teh first web search. It lists some of the benefits, it is extremely advanced. You can find a ton of examples on github. I am

[android-developers] Please help!! Recommendation, using Android Arc Weld Or Chrome Extension, or some other option as a Universal application platform.

2016-02-27 Thread Shane Carr
Hello, I currently work on a social messaging product we build for Android. I want to migrated it to a multi platform desktop application in chrome. We have an Android version which works and is live in google play, and has been very successful. My scenario is I'd like to light this up cross

[android-developers] Android Universal Application

2016-02-27 Thread Shane Carr
Hello, I currently work on a social messaging product we build for Android. I want to migrated it to a multiplatform desktop application in chrome. We have an Android version which works and is live in google play, and has been very successful. My scenario is I'd like to light this up cross

[android-developers] 4.1 jellybean,

2012-09-21 Thread Shane Flynn
When is 4.1 going to be available for the htc one x -- 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 this group, send email to

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
community that would be a good fit for this type of project, I'd also like to see about moving over development to that project. Thanks, Shane -- 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

[android-developers] In-App Purchase and Order Numbers

2012-05-03 Thread Shane Schaefer
I've recently implemented In-App Purchase in my app and was doing some testing with logging the order numbers that show up on the emailed receipt and what my application server receives during the transaction. On my Google Checkout/Merchant account associated with my app, I can look at my test

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

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

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
to understand? Shane -- 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 this group, send email to android-developers+unsubscr...@googlegroups.com

[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

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

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
with market package name way is the only way. I have a hard-requirement to open the market (all tested on specific devices and specific firmware before-hand). And who are you to tell me not to do it anyway? I understand the limitations. Shane -- You received this message because you are subscribed

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

2011-02-28 Thread Shane Isbell
It appears that Dianne has quite a following but enough with the hate emails, both public and private. I have control over the environment and distribution so saying not to do something just doesn't apply in my case. Shane On Mon, Feb 28, 2011 at 2:06 PM, rich friedel rich.frie...@gmail.comwrote

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

2011-02-28 Thread Shane Isbell
the G1 looked like a brick when it first came out. Shane -- 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 this group, send email to android-developers

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

2011-02-24 Thread Shane Isbell
(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); } Just set the forceLandscape boolean to whatever you want to test. You will have to flip the bit and recompile/deploy for each time, but it got me through testing the layouts. Shane On Thu, Feb 24, 2011 at 8:22 PM, Stacy Young styoung.li...@gmail.comwrote: Re-posting since

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

2011-02-23 Thread Shane Isbell
emulator starts to get eclipse to find it. The previous version worked (not well but it worked). Fortunately, the xoom is released tomorrow so I won't have to deal with the emulator until 4.0, hopefully a while out. Shane On Wed, Feb 23, 2011 at 10:55 AM, Romain Guy romain...@android.com wrote

[android-developers] Custom ListAdaptor Issues

2011-02-22 Thread Shane O'Reilly
Hey everyone, I'm a little stuck right now. i'm getting some funky errors when I try run my project. Basically what it's doing is pulling a number of entries from a DB and displaying them in a custom ListAdaptor. I'm getting ArrayAdapter requires the resource ID to be a TextView as a error

Re: [android-developers] Re: Honeycomb SDK

2011-02-10 Thread Shane Isbell
has entirely sorted this out yet. Shane On Thu, Feb 10, 2011 at 10:37 AM, Ed Burnette ed.burne...@gmail.com wrote: Ok, so if 2.3.3 is API level 10, and 3.0 is API level 11, where would any future 2.x releases fit in? Will they be called API level 10, or 12, or will you start using fractional

[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

Re: [android-developers] AsyncTask in Honeycomb

2011-02-04 Thread Shane Isbell
. Shane -- 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 this group, send email to android-developers+unsubscr...@googlegroups.com For more options

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

2011-02-04 Thread Shane Isbell
to account for some threading problem, I found the original queue in AsyncTask worked fine. Something there seems a little goofy. Shane -- 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] app causes reboot on DroidX after activity gets destroyed - anybody having similar issues?

2011-02-04 Thread Shane Isbell
like other devices. Shane On Fri, Feb 4, 2011 at 1:12 PM, mot12 martin.hu...@gmail.com wrote: Hello group, My app seem to cause reboots on DroidX phones. No force close or unusual behavior before the reboot is reported. Closing the last activity seems to cause the reboot. Unfortunately

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

2010-11-23 Thread Shane Isbell
of games would be excluded from Android Market, so MiKandi may fit the bill for many android developers looking to expand revenue. There are not that many of these types of games out there so it's a great time for app developers to fill this niche. Shane On Mon, Nov 22, 2010 at 10:25 PM, Gene R. gurur

[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 group

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
for the reviews. Shane -- 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 this group, send email to android-developers+unsubscr...@googlegroups.com For more

Re: [android-developers] Re: Google TV

2010-10-12 Thread Shane Isbell
well before then so I can play freely with it. I'm pretty sure with the Sony Google TV such an SDK will never be available (but hey even Verizon changed its strips), but don't hold your breathe there. Shane On Tue, Oct 12, 2010 at 12:51 PM, Kumar Bibek coomar@gmail.com wrote: Well, I guess

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
never even consider them, as they either have free apps or their sales on Android Market are so low, they could never justify it. With a low number of apps in the store, users won't take it seriously. You end up with low downloads and sales so developers don't take it seriously. Shane On Mon, Oct

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

2010-10-04 Thread Shane Isbell
don't come, there are no sales of paid apps. If there are no sales, developers don't upload, users don't come... In short, free apps are the strongest way to bootstrap an app store user community. Shane -- You received this message because you are subscribed to the Google Groups Android

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
for them. Waiving developer fees for a while, as Michael A. suggested, would largely make it a no-brainer for many devs. Shane -- 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: 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
On Fri, Jul 2, 2010 at 2:37 AM, skooter500 skooter...@gmail.com wrote: Hi Shane I took a look at ZappMarket. A couple of suggestions. The URL http://zappmarket.com/ just shows the zapp market logo and nothing else after that. Yes, you are right. I still need to build out an informational

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
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 [...] I prefer to stop here. I didn't say a word about SlideLock, so your point

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

  1   2   3   >