[android-developers] Run Google Maps Android API v2 on devices with OpenGL 2.0

2013-07-09 Thread DoM
Hi everybody, I am developing and app with maps. I' ve been able to setup and run Google Maps Android API v2 on emulator, but I am testing the app on real device(Huawey Ideos) and it has an OpenGL version 1.1 . To be more precise the app doesn't crash but shows me a blank screen. Do you have

Re: [android-developers] Re: How do I get the MD5 fingerprint of my application certificate through code?

2011-06-08 Thread Dom
Hi mendhak, did you solve this problem? Were you able to get the MD5 Certificate Fingerprint of your app programmatically? Any directions on how to achieve this please? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] Re: How do I get the MD5 fingerprint of my application certificate through code?

2011-06-08 Thread Dom
Actually, I (and mendhak's original post) would like to get the MD5 fingerprint via CODE or PROGRAMMATICALLY. Getting it via the keytool is well documented in tonnes of places across the web. I would like to implement an architecture similar to google maps api. The way google maps authorizes

Re: [android-developers] Re: How do I get the MD5 fingerprint of my application certificate through code?

2011-06-08 Thread Dom
Got it, thanks! Here's the snippet of code: Signature[] sigs = getBaseContext().getPackageManager().getPackageInfo(getPackageName(), PackageManager.GET_SIGNATURES).signatures; for(Signature sig : sigs) { byte[] hexBytes = sig.toByteArray();

Re: [android-developers] Re: How do I get the MD5 fingerprint of my application certificate through code?

2011-06-08 Thread Dom
Ok, cool, thanks! -- 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 this group, send email to android-developers+unsubscr...@googlegroups.com For more

[android-developers] using native protocol buffer library does not work

2011-06-01 Thread dom
Hi everyone, I've built the Google protocol buffer library (native c++ version) into a static library using the standalone toolchain. I modified the HelloJni sample in the NDK development to use this library, but when I go to run it on the emulator nothing works. I created a small test library

[android-developers] Error Parsing xml response

2011-05-26 Thread DoM
Hi everyone,I have to parse an xml response,that I receive whit a SOAP call.this is the xml response: ?xml version=1.0 encoding=utf-8? soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/; xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;

Re: [android-developers] Re: Restricted access to Content Provider

2011-05-04 Thread Dom
Thanks for that info Dianne. It looks like I need the android:protectionLevel=signature configuration, however I can't get it working. Here is my manifest containing my content provider: manifest xmlns:android=http://schemas.android.com/apk/res/android; package=com.cpexample permission

[android-developers] Re: Restricted access to Content Provider

2011-05-03 Thread Dom
Hi, did you solve this problem of restricting access to your content provider to certain applications? -- 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] How to configure TCP/IP MONITOR

2011-03-18 Thread DoM
Can anyone help me to configure Tcp/ip monitor on eclipse. I'm writing a client for a Web Server running on remote machine.This is my code: import org.ksoap2.SoapEnvelope; import org.ksoap2.serialization.PropertyInfo; import org.ksoap2.serialization.SoapObject; import

[android-developers] Re: Why Return null when using findViewById in Activity to find and handle CustomView?

2009-12-15 Thread dom
you should use public MapCanvas(Context context, AttributeSet attrs) { super(context, attrs);// id is in the attrs, if you didn't pass the id to the view class, the class have no id. initialize(); } On Dec 4, 5:41 pm, krekar swbon...@gmail.com wrote: hi, there... I wrote

[android-developers] How to install Maps in android 2.0

2009-11-11 Thread DoM
I everyone, In Android 2.0 there isn't Maps Application,How can I install it? I'm buildind a Maps application,but I have this error: [2009-11-11 15:50:06 - Maps]Installation error: INSTALL_FAILED_MISSING_SHARED_LIBRARY [2009-11-11 15:50:06 - Maps]Please check logcat output for more details.