[android-developers] Re: com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: android/support/v4/internal/view/SupportMenu.class

2016-07-21 Thread Igor Ganapolsky
Try to leverage the *configurations.all { }* block at the bottom of your build.gradle. You can then exclude module: 'support-annotations' On Wednesday, June 8, 2016 at 12:41:29 AM UTC-4, Sabyasachi Dash wrote: > > Hi, > I included compile 'com.google.android.gms:play-services-gcm:9.0.0*' *in >

[android-developers] Re: AppWidget: help with setOnClickPendingIntent()

2016-06-29 Thread Igor Ganapolsky
I am facing the same problem with my RemoteViews in notification layout. I cannot set multiple PendingIntents with different intent extras. Is this still the case in 2016? I am surprised they didn't fix it. On Sunday, June 14, 2009 at 3:19:31 PM UTC-4, BoD wrote: > > Hi! > > I'm making a lit

Re: [android-developers] canvas.drawBitmap draws over screen image instead of replacing screen image

2016-03-03 Thread Igor Ganapolsky
This would actually draw a black color for your canvas. See screenshot. On Sunday, November 25, 2012 at 7:25:15 PM UTC-5, Romain Guy wrote: > > Surfaces are double (or even tr

[android-developers] Re: Google Play Services adds nearly 10,000 methods!

2015-07-17 Thread Igor Ganapolsky
Any update on this issue? I there a workaround at all? I am experiencing severe DEX limitations in my project because of this. On Tuesday, March 25, 2014 at 1:56:16 PM UTC-4, Jeff Campbell wrote: > > The latest version and the Google Play Services (4.3) now adds about 2,500 > more methods (sin

[android-developers] Re: ServiceTestCase and Contexts

2015-01-29 Thread Igor Ganapolsky
I am getting this error: > android.content.Context.getMainLooper()' on a null object reference > When calling new GoogleApiClient.Builder(getApplication()) .addConnectionCallbacks(this) .addOnConnectionFailedListener(this) .addApi(Locati

[android-developers] Re: process.destroy() logging exceptions in ICS

2014-08-26 Thread igor ganapolsky
But process.exitValue() doesn't actually destroy the process. On Thursday, July 5, 2012 4:43:36 PM UTC-4, elliotn wrote: > > If anybody cares, I did find a workaround: > > ... > finally { >destroyProcess(process); > } > > > > private static void destroyProcess(Process proces

[android-developers] Re: Fork/Join and JSR166 on Android

2014-05-28 Thread igor ganapolsky
Ed, Being that your link is 3 years old, is it still relevant to today's Android development landscape? -- 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

[android-developers] Re: Fork/Join and JSR166 on Android

2014-05-28 Thread igor ganapolsky
Being that your link is 3 years old, is it still relevant to today's Android development landscape? -- 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 fro

[android-developers] Re: ADB server didn't ACK, cannot bind tcp...

2014-02-20 Thread igor ganapolsky
You can try running this command to kill port 5037: *fuser -k tcp 5037* Otherwise, read this article to get a better understanding of what's running on your ports: https://www.debian-administration.org/article/184/How_to_find_out_which_process_is_listening_upon_a_port On Wednesday, June 10, 200

[android-developers] GooglePlayServices not found

2013-09-05 Thread igor ganapolsky
Ever since updating the latest Android Studio and the latest SDK, I cannot see google maps in my project. It just shows a blank map. Logcat prints the following error: *GooglePlayServicesUtil: The Google Play services resources were not found. Check your project configuration to ensure that th

[android-developers] Re: ActionBarCompat error

2013-09-04 Thread igor ganapolsky
It turns out that I needed *ids*, *reserved_ids*, and *attrs.xml* in my res/values folder. I had inadvertently deleted these. Now all works! On Thursday, September 5, 2013 1:20:04 AM UTC-4, igor ganapolsky wrote: > > All of a sudden my Android Studio is giving me the following compi

[android-developers] ActionBarCompat error

2013-09-04 Thread igor ganapolsky
All of a sudden my Android Studio is giving me the following compilation error: *cannot resolve symbol @id/actionbar_compat_title* * * This is code located in styles.xml: @id/actionbar_compat_title