Did it fix the error message in your log or fix the symptoms (ie: things not working). So far, for me, everything *seems* to be working properly except for the fact that it's pushing an error message to the log every once in awhile.
On Monday, December 16, 2013 1:01:57 PM UTC-5, Adam Brown wrote: > > Hhmmm, ya I was seeing the exact same symptoms with in-app billing, but > adding appcompat-v7 fixed it for me. > > > On Sun, Dec 15, 2013 at 11:02 PM, Kevin Mark <[email protected]<javascript:> > > wrote: > >> I'm using both support-v4 and appcompat-v7 in my build and I'm still >> plagued by the same error. Oddly enough, nothing in my app *appears* to >> be broken. Including in-app billing. >> >> >> On Thursday, December 12, 2013 7:41:17 PM UTC-5, Adam Brown wrote: >>> >>> I had a similar problem, I think the Google play services aar depends on >>> the v7 compat aar: >>> >>> compile 'com.android.support:appcompat-v7:+' >>> compile 'com.google.android.gms:play-services:4.0.30' >>> >>> I'm pretty sure both are required. >>> >>> >>> On Saturday, August 3, 2013 7:31:54 AM UTC-7, Aleksander Piotrowski >>> wrote: >>>> >>>> i'm using google maps for android and i just started receiving >>>> following error message: >>>> >>>> E/GooglePlayServicesUtil(18802): The Google Play services resources >>>> were not found. Check your project configuration to ensure that the >>>> resources are included. >>>> >>>> i'm pretty sure my app worked fine before and all that has changed >>>> recently was AS updated to 0.2.3 >>>> >>>> just checked: >>>> - got all recent sdk updates >>>> - .aar files are present in android-sdk/extras/google/ >>>> m2repository/com/google/android/gms/play-services/ >>>> >>>> of course, i'm building project with gradle, and here is my >>>> build.gradle file. >>>> like i said, project builds just fine -- i got this error at run-time. >>>> >>>> any idea? >>>> >>>> buildscript { >>>> repositories { >>>> mavenCentral() >>>> } >>>> dependencies { >>>> classpath 'com.android.tools.build:gradle:0.5.5' >>>> } >>>> } >>>> apply plugin: 'android' >>>> >>>> repositories { >>>> mavenCentral() >>>> } >>>> >>>> dependencies { >>>> compile 'com.android.support:support-v4:13.0.+' >>>> compile 'com.google.android.gms:play-services:3.1.36' >>>> compile project(':facebook-sdk-3.0.2') >>>> compile files('libs/gson-2.2.4.jar') >>>> compile files('libs/retrofit-1.0.2.jar') >>>> compile files('libs/Parse-1.3.1.jar') >>>> compile files('libs/picasso-1.1.1.jar') >>>> } >>>> >>>> android { >>>> compileSdkVersion 18 >>>> buildToolsVersion "18.0.1" >>>> >>>> defaultConfig { >>>> minSdkVersion 14 >>>> targetSdkVersion 18 >>>> } >>>> } >>>> >>>> >>>> >>>> -- >> You received this message because you are subscribed to a topic in the >> Google Groups "adt-dev" group. >> To unsubscribe from this topic, visit >> https://groups.google.com/d/topic/adt-dev/dLbwDe9_IHk/unsubscribe. >> To unsubscribe from this group and all its topics, send an email to >> [email protected] <javascript:>. >> For more options, visit https://groups.google.com/groups/opt_out. >> > > -- You received this message because you are subscribed to the Google Groups "adt-dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
