[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

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

[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 (since

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

[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 process) {

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

[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: 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,

[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

Re: [android-developers] Not able to install Android Studio

2013-09-04 Thread igor ganapolsky
There aren't issues with other programs on my machine using the PATH variable with spaces. What should I do? Igor On Wednesday, September 4, 2013 2:27:43 PM UTC-4, Larry Meadors wrote: JDK installed in a directory that has spaces? Windows has issues with that sometimes. Larry -- You

Re: [android-developers] Not able to install Android Studio

2013-09-04 Thread igor ganapolsky
name: Faulting package-relative application ID: On Wednesday, September 4, 2013 2:36:39 PM UTC-4, igor ganapolsky wrote: There aren't issues with other programs on my machine using the PATH variable with spaces. What should I do? Igor On Wednesday, September 4, 2013 2:27:43 PM UTC-4, Larry

[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: style name=ActionBarCompatTitleBase item name=android:id@id/actionbar_compat_title/item !--

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

Re: [android-developers] Using EasyTracker with SherlockFragmentActivity

2013-08-16 Thread igor ganapolsky
I am saying that I have no trouble using EasyTracker in regular *Activities *and *Fragments*. It is the *SherlockFragmentActivity *that is giving me trouble. On Thursday, August 15, 2013 10:39:20 PM UTC-4, TreKing wrote: On Thu, Aug 15, 2013 at 2:42 PM, igor ganapolsky eaz

Re: [android-developers] Using EasyTracker with SherlockFragmentActivity

2013-08-16 Thread igor ganapolsky
Hello, if you don't use that library, then what do you use for analytics in your mobile apps? I don't know of a GA/EasyTracker specific forum... Thanks, Igor On Friday, August 16, 2013 11:30:02 AM UTC-4, TreKing wrote: On Fri, Aug 16, 2013 at 9:47 AM, igor ganapolsky eaz

[android-developers] Using EasyTracker with SherlockFragmentActivity

2013-08-15 Thread igor ganapolsky
I am having a hard time using Google Analytics EasyTracker in my Activities that extend SherlockFragmentActivity. When I try to use EasyTracker.getInstance().activityStart(this);in onStart, the compiler doesn't complain but the app crashes with:

[android-developers] Re: XML issue

2012-12-13 Thread igor ganapolsky
Copy the xml file contents into notepad (or any plain text editor), then paste them back into your project. On Thursday, July 29, 2010 11:15:09 AM UTC-4, Pedro Teixeira wrote: Hello there, I've been going on and on with my XML file and I can't seem to find any problem... The file

[android-developers] Re: onDraw is called twice

2012-08-14 Thread igor ganapolsky
Have you tried commenting out* super.onDraw()*? On Saturday, December 19, 2009 5:06:01 PM UTC-5, jdekeij wrote: Hoi, In my layout I have a custom view which extends View and under this a button is placed. When I click the button the color changes to orange (Android default behavior) but it

Re: [android-developers] is it possible to setup HTC emulator in android sdk?

2012-07-18 Thread igor ganapolsky
I think the user meant HTC skins for the emulator. Kinda like what Motorola provides... On Friday, January 14, 2011 10:46:18 AM UTC-5, Kumar Bibek wrote: There is no such thing as an HTC emulator. Use the normal emulator. However, if you want to change the screen size or resolution of the

Re: [android-developers] how to set the size of tab in tabHost?

2012-06-10 Thread igor ganapolsky
I don't see how this changes the size of individual tabs. Have you tested it? On Friday, May 29, 2009 12:00:33 AM UTC-4, Rockingteam wrote: Try this. tabHost.getTabWidget().getChildAt(0).setLayoutParams(new LinearLayout.LayoutParams(width,height)); -- You received this message because

[android-developers] Re: android popup keyboard close button missing

2012-05-30 Thread igor ganapolsky
Have you ever resolved this? I am facing a similar issue. On Friday, January 29, 2010 4:43:33 AM UTC-5, extrapedestrian wrote: Hint: I think problem is in keyboard_popup_keyboard.xml, but I don't want to recompile android source... On Jan 29, 10:37 am, extrapedestrian

[android-developers] Re: Sample Keyboard - Popup characters

2012-05-30 Thread igor ganapolsky
You should have an attribute - *android:popupKeyboard* - in your keys. Example *popup_keyboard.xml*: Keyboard xmlns:android=http://schemas.android.com/apk/res/android; android:keyWidth=10%p android:horizontalGap=0px android:verticalGap=0px android:keyHeight=56dp /Keyboard On

[android-developers] Re: Android Playing YouTube video in WebView

2012-03-04 Thread igor ganapolsky
In my case, the YouTube video doesn't play at all if I click the play button inside the WebView client. On Friday, April 8, 2011 10:03:08 AM UTC-4, Dan wrote: I am using webview client. shouldOverrideUrlLoading is a method of webview client. The issue I am having is the difference in