Re: [android-developers] Re: Free App suspended for adding Google Analytics?

2014-11-18 Thread NickL
played on other >music players). * > > > The only difficulty would be communicating the message to your users that > the purchase is meant to be a donation for your work on the app. If you > would phrase it like that you still would be violating the policies. > > >

Re: [android-developers] Re: Free App suspended for adding Google Analytics?

2014-11-18 Thread NickL
I bet you are right. Not worth the effort here. On Tuesday, November 18, 2014 1:15:10 PM UTC-5, dra...@gmail.com wrote: > > Other developers have had their apps taken down over the use of pay pal > donations so it's highly likely that > > On Tue, 18 Nov 2014 17:38 NickL >

Re: [android-developers] Re: Free App suspended for adding Google Analytics?

2014-11-18 Thread NickL
; > On Tue, Nov 18, 2014 at 9:54 AM, NickL > > wrote: > >> There is a donate link (redirects to PayPal) but there is nothing in any >> way that gives the sense that new content would be made available by >> clicking that link to donate, which is a Google requireme

[android-developers] Re: Free App suspended for adding Google Analytics?

2014-11-18 Thread NickL
But I suspect your product was > misleading. > > On Tuesday, November 18, 2014 5:20:50 AM UTC-8, NickL wrote: > >> *"REASON FOR REMOVAL*: Violation of the paid and free >> <https://play.google.com/about/developer-content-policy.html#payments> >> provision &

[android-developers] Free App suspended for adding Google Analytics?

2014-11-18 Thread NickL
*"REASON FOR REMOVAL*: Violation of the paid and free provision of the Content Policy and section 3.5 of the Developer Distribution Agreeme

[android-developers] Re: Layout is corrupted with graphics from another layout? Only at runtime, only on a certain device.

2012-10-09 Thread NickL
re-appears. > > > > On Tuesday, October 9, 2012 12:34:51 PM UTC+2, NickL wrote: >> >> I have never seen this before, and have been developing apps for 2 >> years+. I wrote a layout, ran it on an old handset (HTC Android 2.2), and >> one of the dialogs (an

[android-developers] Layout is corrupted with graphics from another layout? Only at runtime, only on a certain device.

2012-10-09 Thread NickL
I have never seen this before, and have been developing apps for 2 years+. I wrote a layout, ran it on an old handset (HTC Android 2.2), and one of the dialogs (android.Theme.Dialog) has graphics in it from a different layout. The other layout is not a dialog. Not that that probably matters.

Re: [android-developers] Re: Google Docs Access

2012-10-06 Thread NickL
Getting google docs to work on Android is probably one of the least well documented, and difficult to decipher, tasks in this platform. One can find scattered examples, but nothing fully explanatory. For all of those who have figured it out, we have few posted sample applications that cover ev

Re: [android-developers] Google Docs - DocsService - Building a sample app - VerifyError? What does that mean?

2012-10-06 Thread NickL
012 at 7:34 PM, NickL >wrote: > >> VerifyError? What does that mean? >> > > Try punching errors you don't understand into your favorite search engine. > > > -

[android-developers] Download file - google docs android

2012-10-05 Thread NickL
I have read Yaniv Inbar's Picasa (xml-based) android client, and the similar google Docs client, and both work well for me to both upload and view files. I want to know how to download. I am trying to download via the authorized url, like this, but instead of the file expect, it returns me

[android-developers] Google Docs - DocsService - Building a sample app - VerifyError? What does that mean?

2012-08-16 Thread NickL
When executing this line: DocService client = new DocsService("MyAppName"); Error: InvocationTargetException: cause = VerifyError, cdetailMessage: com/google/gdata/client/media/MediaService -- You received this message because you are subscribed to the Google Groups "Android Developers" g

Re: [android-developers] SecurityException in RemoteViewsService?

2012-08-04 Thread NickL
The error happened when I call mResolver.query(Abc.CONTENT_URI, null, null, null, null); in onDataSetChanged(). Does that help? On Saturday, August 4, 2012 11:20:51 AM UTC-4, Kostya Vasilyev wrote: > I've run into this exact issue before. > > My fix was to add Binder.clearCallingIdentity(

[android-developers] SecurityException in RemoteViewsService?

2012-08-04 Thread NickL
Error accessing content provider in RemoteViewService Hi, I'm trying to build a home screen widget for my app and I am using stackview, remoteviewservice. In the RemoteViewsService, I need to query the content provider. My cotent provider is set exported=false. However, when I want to add th

[android-developers] VerifyError using DocsService example? Can't start it at all....

2012-08-04 Thread NickL
When executing this line: DocService client = new DocsService("MyAppName"); Error: InvocationTargetException: cause = VerifyError, cdetailMessage: com/google/gdata/client/media/MediaService Am I missing something in the build path? I have these jars: gdata-2.2.1-alpha.jar gdata-core-1.0.

[android-developers] GoogleOAuthGetTemporaryToken - fails on HoneyComb, same code works with 2.1 api

2012-02-15 Thread NickL
The exact same code below results HTTP 400 (Bad request) on Honeycomb, but works great on 2.2. Any idea why? GoogleOAuthGetTemporaryToken temporaryToken = new GoogleOAuthGetTemporaryToken(); temporaryToken.signer = createOAuthSigner(); t

[android-developers] FYI - EXAMPLE - How To Retrofit Picasa Android Uploader to Use Google Docs

2012-01-08 Thread NickL
FYI. In case anyone would benefit, here is the code I used to get the Picasa example app to point to Google Docs. I've been using this in an app for a year now, and no problems whatsoever. It will upload only - download is another example (haven't had a need for it, so didnt write it yet. But shou

[android-developers] Re: C2DM - phone send data back to Google Cloud (in addition to normal Cloud to Phone)?

2011-10-02 Thread NickL
While true that the App responds to notifications from C2DM (Google), what is to keep the app from sending an http post message back to Google's C2DM server with a registration ID intended for the server- based app (along with a returned payload of data/message)? On Sep 22, 12:59 am, Sourav Howlad

[android-developers] App crash report - InputChannel - could not read input channel file descriptors from parcel.

2011-10-02 Thread NickL
Hi - crash report is showing this: "Android.View.InputChannel.nativeReadFromParcel - Could not read input channel file descriptors from parcel." this seems to occur when the user pressed a button that inflates a dialog. Seems like standard stuff. I googled this message and only see it in a Cyan

[android-developers] C2DM - phone send data back to Google Cloud (in addition to normal Cloud to Phone)?

2011-09-21 Thread NickL
The C2DM supports both directions? ie, does Google expect the notified app to contact the initiating server directly? or is there an api to let the phone send data to the target server via the Google C2DM server? if so, it would save some of the authorization/ authentication load from my server b