[android-developers] Re: package android.support.v7.appcompat does not exist

2014-07-20 Thread greno
In case anyone else runs into this issue: The problem stemmed from utilizing a file from part of the support library itself. All I needed was to modify the following: import android.support.v7.appcompat.R; to import my.package.R; -- You received this message because you are subsc

[android-developers] Re: package android.support.v7.appcompat does not exist

2014-07-20 Thread greno
Something is not right about the way that ../sdk/extras/android/support/v7/appcompat/bin/classes.jar is being built: $ jar tf ../sdk/extras/android/support/v7/appcompat/bin/classes.jar META-INF/ META-INF/MANIFEST.MF .readme There's no classes in the jar !! Google, why doesn't this library bu

[android-developers] package android.support.v7.appcompat does not exist

2014-07-19 Thread greno
at.R; Here's the generated classes.jar and R.java: $ ls -l ../sdk/extras/android/support/v7/appcompat/bin/classes.jar -rw-rw-r--. 1 greno greno 538 Jul 19 12:24 ../sdk/extras/android/support/v7/appcompat/bin/classes.jar $ ls -l ../sdk/extras/android/support/v7/appcompat/gen/android/support/v7/

[android-developers] appcompat v7: package android.support.v7.appcompat does not exist

2014-07-19 Thread greno
appcompat.R; Here's the generated classes.jar and R.java: $ ls -l ../sdk/extras/android/support/v7/appcompat/bin/classes.jar -rw-rw-r--. 1 greno greno 538 Jul 19 12:24 ../sdk/extras/android/support/v7/appcompat/bin/classes.jar $ ls -l ../sdk/extras/android/support/v7/appcompat/gen/android/

[android-developers] Re: Security Alert: You are using a highly vulnerable version of OpenSSL

2014-06-29 Thread greno
I just got one of these notices as well. And I didn't think it applied. Then I did some digging and found out that sure enough one of the apps was linked to an old version of openssl. So now I'm working on getting the app updated to a newer version of openssl. -- You received this message b

[android-developers] Re: After update to latest build tools 23.0.0: compile problems

2014-06-28 Thread greno
Ok, it looks like v 23.0.0 is REALLY BROKEN. https://code.google.com/p/android/issues/detail?id=72419 -- 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: After update to latest build tools 23.0.0: compile problems

2014-06-28 Thread greno
Ok, it looks like v 23.0.0 is REALLY BROKEN. https://code.google.com/p/android/issues/detail?id=72419 On Saturday, June 28, 2014 6:21:39 PM UTC-4, greno wrote: > > $ make > ... > > * [taskdef] Could not load definitions from resource > emma_ant.properties. It could not b

[android-developers] After update to latest build tools 23.0.0: compile problems

2014-06-28 Thread greno
$ make ... * [taskdef] Could not load definitions from resource emma_ant.properties. It could not be found.* -set-mode-check: -set-debug-files: -check-env: [checkenv] Android SDK Tools Revision 23.0.0 [checkenv] Installed at /usr/local/android-sdk-linux_x86 -setup: [echo] Project Name

[android-developers] Trivial Drive: Various errors

2013-11-19 Thread greno
So today our Trivial Drive app starts working. However, we are seeing a number of errors. First is when we make a purchase. The purchase succeeds but at the very end it pops an error message saying signature verification error. Then when we reload the app it gets signature verification error t

[android-developers] Re: Trivial Drive: ERROR: User is not eligible for this purchase

2013-11-19 Thread greno
This morning I republish the APK again and wait. And today it works finally. So everything was right. On Tuesday, November 19, 2013 12:18:36 AM UTC-5, greno wrote: > > So now I look on testers phone and their are two Google Accounts > > First account is his previous primary non-g

[android-developers] Re: Trivial Drive: ERROR: User is not eligible for this purchase

2013-11-18 Thread greno
thing? Can the old non-gmail account be deleted or will that mess up the phone and all the contacts, data, etc? On Monday, November 18, 2013 11:07:59 PM UTC-5, greno wrote: > > Having spent the better part of 3 days on this with no luck at all getting > this Trivial Drive app to work I t

[android-developers] Trivial Drive: ERROR: User is not eligible for this purchase

2013-11-18 Thread greno
Having spent the better part of 3 days on this with no luck at all getting this Trivial Drive app to work I thought I would post what I've done and see if anyone can see what could be amiss. Downloaded the Google Play extras and built the Trivial Drive app with the proper public key. Signed th

[android-developers] DEX: how to set CollisionPolicy.KEEP_FIRST?

2013-11-16 Thread greno
I wanted to do a quick patch for a library jar so I just put the class patch source under the same path as in the library jar in my project src tree. The patch itself compiles. But when I try to package I get a DexMerger error: [dx] Merged dex A (500 defs/876.3KiB) with dex B (400 defs

[android-developers] Re: actionbarsherlock fragment icsadapterview onitemselected not called

2013-11-13 Thread greno
Got the listener working by using an inline anonymous listener. On Wednesday, November 13, 2013 9:39:56 PM UTC-5, greno wrote: > > I'm using as ActionBarSherlock spinner in a fragment. > > import android.widget.AdapterView; > import android.widget.AdapterView.OnItemSelect

[android-developers] actionbarsherlock fragment icsadapterview onitemselected not called

2013-11-13 Thread greno
I'm using as ActionBarSherlock spinner in a fragment. import android.widget.AdapterView; import android.widget.AdapterView.OnItemSelectedListener; import android.widget.ArrayAdapter; public class Tab1 extends SherlockFragment implements IcsAdapterView.OnItemSelectedListener ... spinner = (IcsSpi

[android-developers] NDK r7b: crtbegin_so.o: No such file

2012-04-02 Thread greno
I have this linking problem with ndk r7b: ...arm-linux-androideabi/bin/ld: crtbegin_so.o: No such file: No such file or directory I have not found a solution yet. Any ideas? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this

[android-developers] custom rules not working

2012-04-02 Thread greno
I created a file custom_rules.xml and added a rule But when I run ant it gives me this error: custom_rules.xml:11: Unexpected element "{} target" {antlib:org.apache.tools.ant}target If I place the rule in the build.xml it works fine. So how do I get it to work in the custom_rules.xml file whic