[android-developers] Accessing a webservice with nested complex type

2013-01-15 Thread Raneez
I want to access a webservice in android which has a complex type inside another complex type. An example of the soap request is soapenv:Envelope xmlns:soapenv=http://schemas.xmlsoap.org/soap/envelope/; xmlns:tem=http://tempuri.org/; xmlns:pat=

[android-developers] Re: Animations in the list view

2013-01-15 Thread Ansh
Hi Nick , Thanks a lot for your reply. I did the same you suggested but it had revealed few issues: after implementing all three steps and when i did below step also *- After the animations have finished insert a new Row into the List at the insertion point, change the child view height back

Re: [android-developers] Re: Toast not showing on Samsung Galaxy S3 (latest update 4.1.2)

2013-01-15 Thread Tobias Lindberg
My carrier is a Danish carrier called Tre (Three) but I dont have a carrier dependent phone, I ordered it over the internet. 2013/1/14 bob b...@coolfone.comze.com Who is your carrier? On Monday, January 14, 2013 7:06:36 AM UTC-6, Tobias wrote: I have a toast displayed in the following way:

[android-developers] Re: Toast not showing on Samsung Galaxy S3 (latest update 4.1.2)

2013-01-15 Thread Tobias
My carrier is a Danish carrier called Tre (Three) but I dont have a carrier dependent phone, I ordered it over the internet. On Monday, January 14, 2013 5:38:53 PM UTC+1, bob wrote: Who is your carrier? On Monday, January 14, 2013 7:06:36 AM UTC-6, Tobias wrote: I have a toast displayed in

[android-developers] Re: Using APK Signature to detect .apk tampering (Attn: Dianne??)

2013-01-15 Thread b0b
PackageManager pm = context.getPackageManager(); try { PackageInfo info = pm.getPackageInfo( xxx.xxx.xxx.xxx, PackageManager.GET_SIGNATURES ); Signature[] sig = info.signatures; String sigstring = new String( sig[0].toChars() ); // Compare this

[android-developers] kSOAP XmlPullParserException

2013-01-15 Thread Tonez
Hey Guys, I'm stumped on a problem trying to consume a ColdFusion SOAP service in Android using kSOAP. Here is my java code for invoking one of them test methods I've written in ColdFusion (which only returns a string): --- private static final String NAMESPACE =

Re: [android-developers] Re: Developer fee payment canceled after 2.5 years

2013-01-15 Thread Marcus
Same problem here... just wrote the ticket... now I'm waiting. -- 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

Re: [android-developers] Re: Toast not showing on Samsung Galaxy S3 (latest update 4.1.2)

2013-01-15 Thread Kevin Duffey
If I can remember I'll try on my s3 sometime today. Any code snippet you want me to try ? On Jan 15, 2013 1:34 AM, Tobias tobias.e.lindb...@gmail.com wrote: My carrier is a Danish carrier called Tre (Three) but I dont have a carrier dependent phone, I ordered it over the internet. On Monday,

[android-developers] Re: getting a 9-patch button working

2013-01-15 Thread dashman
Apologies - clarification - Not working means i don't see the background 9.png image. I changed the Button element to point directly to the 9.png image - and that works. from: Button android:background=@drawable/dialpad_selector /Button to: Button android:background=@drawable/dialpad /Button

Re: [android-developers] Re: Developer fee payment canceled after 2.5 years

2013-01-15 Thread Jim Graham
On Mon, Jan 14, 2013 at 10:30:06PM -0800, Gyscos wrote: They didn't *tell me* how to fix it, they said it was fixed. Ah, ok. I stand corrected, then. Later, --jim -- THE SCORE: ME: 2 CANCER: 0 73 DE N5IAL (/4) | Peter da Silva: No, try rm -rf / spooky1...@gmail.com |

[android-developers] Android pre-compiler NullPointerException: LICENSE is to blame

2013-01-15 Thread Ian
I just updated to the SDK tools 21.0.1 and ADT 21.0.1.v201212060256-543035. This killed my project: I started getting a pre-compiler fail on every build, with no explanation. After MUCH trial and error, I found that deleting a file called LICENSE from my source tree fixes it -- BUT ONLY

[android-developers] Re: Animations in the list view

2013-01-15 Thread Spiral123
in that case I'd think about insert a new row into the list when the listview is first displayed. from the example its always going to be at position(0) in the list so you can override its height in the getview() and set it at 1 dp high (tip: don't set the row view to View.GONE). At the end

Re: [android-developers] Total User Installs decreasing

2013-01-15 Thread Latimerius
FWIW, I sent them a message last week asking for an explanation (my reading of the docs, just as anybody else's, is that the number can never drop). No reply so far. On Sat, Jan 12, 2013 at 9:59 PM, Iain King iaink...@gmail.com wrote: My total user installs on an app has gone down by 2 over

Re: [android-developers] Re: BouncyCastle signature value does not match with dotNET signature value.

2013-01-15 Thread mbarbiero
I read the certificate form a .pfx file and extract keys: PUBLICKEY cert = ks.getCertificate(alias); X509Certificate X509 = (X509Certificate) cert; publicKey = cert.getPublicKey(); PRIVATEKEY key = ks.getKey(alias, senha.toCharArray()); if (key instanceof PrivateKey) {

Re: [android-developers] Re: BouncyCastle signature value does not match with dotNET signature value.

2013-01-15 Thread Nikolay Elenkov
On Tue, Jan 15, 2013 at 11:14 PM, mbarbiero marco.barbi...@gmail.com wrote: I read the certificate form a .pfx file and extract keys: PUBLICKEY cert = ks.getCertificate(alias); X509Certificate X509 = (X509Certificate) cert; publicKey = cert.getPublicKey(); PRIVATEKEY key =

[android-developers] Re: Any USB-Serial Adapter on Android Phones?

2013-01-15 Thread bob
Why would you be using that? Isn't serial pretty much obsolete? I would be surprised if there isn't a more modern way to do what you're trying to do. On Monday, January 14, 2013 5:35:09 PM UTC-6, David White wrote: Specifically, for my Note N7000 but interested in more general

Re: [android-developers] Re: BouncyCastle signature value does not match with dotNET signature value.

2013-01-15 Thread bob
Base64 does not convert 3 chars per byte. It uses 4 characters per 3 bytes for a roughly 33% size increase. On Tuesday, January 15, 2013 8:57:23 AM UTC-6, Nikolay Elenkov wrote: On Tue, Jan 15, 2013 at 11:14 PM, mbarbiero marco.b...@gmail.comjavascript: wrote: I read the

[android-developers] Re: Total User Installs decreasing

2013-01-15 Thread bob
If you want better stats, you should probably use Flurry or Localytics or some other metric. On Saturday, January 12, 2013 2:59:55 PM UTC-6, Iain King wrote: My total user installs on an app has gone down by 2 over the last couple of weeks. I have no cancelled orders or anything like

[android-developers] Re: Any USB-Serial Adapter on Android Phones?

2013-01-15 Thread David White
Serial is indeed old. But not obsolete in that there are MANY devices still out there that have only an RS-232 interface. If we want to connect to and use them, serial is the only choice we have. On Tuesday, January 15, 2013 7:10:29 AM UTC-8, bob wrote: Why would you be using that? Isn't

[android-developers] Re: getting a 9-patch button working

2013-01-15 Thread bob
Not sure, but here's my selector that I think works: ?xml version=1.0 encoding=utf-8? selector xmlns:android=http://schemas.android.com/apk/res/android; item android:drawable=@drawable/orange_button android:state_enabled=false/ item android:drawable=@drawable/orange_button

Re: [android-developers] Re: BouncyCastle signature value does not match with dotNET signature value.

2013-01-15 Thread Nikolay Elenkov
On Wed, Jan 16, 2013 at 12:17 AM, bob b...@coolfone.comze.com wrote: Base64 does not convert 3 chars per byte. It uses 4 characters per 3 bytes for a roughly 33% size increase. You are, of course, absolutely right. At least I got the number 3 right :) The main point still stands though -- it

[android-developers] ADT Bundle Eclipse Version

2013-01-15 Thread marcpolo
I'm developing using the ADT Bundle and need to install the Google plugin. There are different download options for the plugin so I need to know which version of eclipse I am running. Can anyone help? Thanks, Marc. -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Re: BouncyCastle signature value does not match with dotNET signature value.

2013-01-15 Thread mbarbiero
My ideia was that the header is in signature, not in Base64. -- 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] Re: getting a 9-patch button working

2013-01-15 Thread bob
I tried your XML, and it seems fine. Maybe try a regular image that isn't a nine-patch? On Monday, January 14, 2013 2:52:05 PM UTC-6, dashman wrote: got a button defined as Button android:id=@+id/button1 android:background=@drawable/dialpad_selector

[android-developers] Re: ADT Bundle Eclipse Version

2013-01-15 Thread lbendlin
currently Eclipse Java Development Tools Version: 3.7.2.v20120120-1414-7z8gFcuFMP7BW5XTz0jLTnz0l9B1 Build id: M20120208-0800 On Tuesday, January 15, 2013 10:39:40 AM UTC-5, marcpolo wrote: I'm developing using the ADT Bundle and need to install the Google plugin. There are different

[android-developers] Re: ADT Bundle Eclipse Version

2013-01-15 Thread marcpolo
Thanks, Where did you find this information? On Tuesday, 15 January 2013 16:52:21 UTC+1, lbendlin wrote: currently Eclipse Java Development Tools Version: 3.7.2.v20120120-1414-7z8gFcuFMP7BW5XTz0jLTnz0l9B1 Build id: M20120208-0800 On Tuesday, January 15, 2013 10:39:40 AM UTC-5, marcpolo

[android-developers] Re: ADT Bundle Eclipse Version

2013-01-15 Thread bob
Here's what mine says: (I went to* About ADT*) Eclipse Platform Version: 3.8.0.v20120607-071945-9gF7jI7nG5qByXMVdkhRMWBQlF4PnDCLybDCPQ Build id: I20120608-1200 (c) Copyright Eclipse contributors and others 2000, 2012. All rights reserved. Visit http://www.eclipse.org/platform This product

Re: [android-developers] Re: BouncyCastle signature value does not match with dotNET signature value.

2013-01-15 Thread Nikolay Elenkov
On Jan 16, 2013 12:45 AM, mbarbiero marco.barbi...@gmail.com wrote: My ideia was that the header is in signature, not in Base64. OK, my bad (again...). The signature is just the padded hash encrypted with the private key. You have the same hash, so either the padding is wrong (unlikely) or

[android-developers] Re: ADT Bundle Eclipse Version

2013-01-15 Thread marcpolo
Thanks for your quick response. I don't get any such info in 'About ADT', only the ADT version (*Build: v21.0.0-519525*) but when I click on installation, this provides a whole list of installation details. On Tuesday, January 15, 2013 9:39:40 AM UTC-6, marcpolo wrote: I'm developing

[android-developers] Re: getting a 9-patch button working

2013-01-15 Thread dashman
i replaced with plain png files and they don't work either. i put the png files (including the selector xml file) in the drawables folder. is that the right place? this is my current state of the files drawable/dialpad_selector.xml -- selector

[android-developers] Re: getting a 9-patch button working

2013-01-15 Thread dashman
looking at the log files, is see SkImageDecoder::Factory returned null I know the images are ok (not using 9patch) and clicked in the imageviewer. so most probably somehow the selector is not set up right. is there a minimum set of states one needs to specify - i just specified 1 global

Re: [android-developers] Re: Total User Installs decreasing

2013-01-15 Thread Latimerius
On Tue, Jan 15, 2013 at 4:20 PM, bob b...@coolfone.comze.com wrote: If you want better stats, you should probably use Flurry or Localytics or some other metric. Do you know how to get the basic market stats (total installs, active installs) using those? For instance, I suspect there would not

Re: [android-developers] Re: BouncyCastle signature value does not match with dotNET signature value.

2013-01-15 Thread mbarbiero
Nikolay, Bob and Jason ... Thank for your attention. This problem XMLDSIG seems simple, but is now driving me crazy. The root of the problem is that I need to develop for Android. If it were in JAVA 6 the documentation is very complete:

[android-developers] Re: getting a 9-patch button working

2013-01-15 Thread bob
On Tuesday, January 15, 2013 10:36:05 AM UTC-6, dashman wrote: i replaced with plain png files and they don't work either. i put the png files (including the selector xml file) in the drawables folder. is that the right place? Yes. Also, I tried your layout, and that works fine for

Re: [android-developers] Re: BouncyCastle signature value does not match with dotNET signature value.

2013-01-15 Thread jason_gates
Hi, No problem. Sorry I couldn't provide more help :) You've got a challenge that requires a lot of patience :) Hang in there. It's not you, it's just a big challenge. It happens to all of us. I found an additional link, might help:http://msdn.microsoft.com/en-us/library/ms996502.aspx

Re: [android-developers] Correct way to implement Activity onDestroy()?

2013-01-15 Thread G. Blake Meike
On Monday, January 14, 2013 6:13:34 PM UTC-8, Greenhand wrote: I considered IntentService before; however, I did not found a way to abort IntentService like the AsyncTask#cancel() mechanism. That's an interesting point. Note, first of all, that wrapping a job in an AsyncTask doesn't

Re: [android-developers] Correct way to implement Activity onDestroy()?

2013-01-15 Thread RichardC
Conciser holding a WeakReference to the Activity from the AsyncTask. On Tuesday, January 15, 2013 5:44:04 PM UTC, G. Blake Meike wrote: On Monday, January 14, 2013 6:13:34 PM UTC-8, Greenhand wrote: I considered IntentService before; however, I did not found a way to abort IntentService

[android-developers] Re: Native SIP support

2013-01-15 Thread JJ
This code might help you get started. http://code.google.com/p/sipdroid/source/checkout On Monday, January 14, 2013 10:27:46 PM UTC-5, Iroid wrote: Hello Everyone, We have to develop a SIP based application. major features include: 1. Audio/Video call

[android-developers] Re: ADT Bundle Eclipse Version

2013-01-15 Thread bob
After clicking *About ADT*, I clicked this icon: https://lh4.googleusercontent.com/-xc8D6HoktqU/UPWgy5MzpkI/AKE/2i1Wb7CYrFo/s1600/theicon.png On Tuesday, January 15, 2013 10:22:01 AM UTC-6, marcpolo wrote: Thanks for your quick response. I don't get any such info in 'About ADT',

[android-developers] Re: getting a 9-patch button working

2013-01-15 Thread dashman
Stupid error! when i created the selector file to eclipse drawable folder - i set the filename to dialpad_select - assuming that the .xml would be auto appended. if it's not - then then at compile time i should have gotton an error message because the dialpad_select.xml (just

Re: [android-developers] Using APK Signature to detect .apk tampering (Attn: Dianne??)

2013-01-15 Thread btschumy
On Monday, January 14, 2013 12:00:15 PM UTC-7, Mark Murphy (a Commons Guy) wrote: BTW, any chance we can convince you to open source your key-checking code? :-) Right now we would rather not make the full details of our implementation public. It will just make the crackers job easier.

[android-developers] Re: Using APK Signature to detect .apk tampering (Attn: Dianne??)

2013-01-15 Thread btschumy
On Tuesday, January 15, 2013 2:56:20 AM UTC-7, b0b wrote: Note that this is not super useful to do that, as all automated cracking tools will detect your call with PackageManager.GET_SIGNATURES, and patch it out. We think we have a mechanism that makes this fairly difficult. It is

Re: [android-developers] Using APK Signature to detect .apk tampering (Attn: Dianne??)

2013-01-15 Thread btschumy
On Monday, January 14, 2013 7:05:37 PM UTC-7, Nikolay Elenkov wrote: This is not particularly reliable: if I repackage your app, I can change whatever 'internal' values you have. Perhaps I'm wrong, but a cracker shouldn't be able to modify the code and re-sign it with our signature.

Re: [android-developers] Re: Using APK Signature to detect .apk tampering (Attn: Dianne??)

2013-01-15 Thread Kristopher Micinski
Hopefully you understand how to write such a tool: it seems that most people who try to write these tools do not, and security by obscurity sounds good until you get someone who pulls out a decompiler on your app. To be clear: the way to circumvent this will entail some degree of static analysis,

Re: [android-developers] Re: Using APK Signature to detect .apk tampering (Attn: Dianne??)

2013-01-15 Thread Kristopher Micinski
By the way: this doesn't belong on android-developers, it belongs on android-security-discuss. You'll probably get more publicity there from people who know things about Android security (into which this conversation has delved). Kris On Tue, Jan 15, 2013 at 1:05 PM, Kristopher Micinski

Re: [android-developers] Correct way to implement Activity onDestroy()?

2013-01-15 Thread Lew
Blake Meike wrote: an inner class and *not* static). That's redundant. In Java, the definition of inner class is a non-static nested class. -- Lew -- 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] SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN broken?

2013-01-15 Thread Agus
Hi all, When I only set this flag SYSTEM_UI_FLAG LAYOUT_FULLSCREEN, I do not see any visible changes but when I additionaly set the flag SYSTEM_UI_FLAG_FULLSCREEN and then clear the SYSTEM_UI_FLAG_FULLSCREEN flag back, the visual effect of this flag SYSTEM_UI_FLAG LAYOUT_FULLSCREEN persists. Is

[android-developers] SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION broken?

2013-01-15 Thread Agus
Hi all, When I only set this flag SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION, the top content inset is flushed to the top edge of the screen and the bottom content inset is flushed to the bottom edge of the screen. Reading based on the official documentation, I expect that only the bottom content

[android-developers] Re: Using APK Signature to detect .apk tampering (Attn: Dianne??)

2013-01-15 Thread bob
How does your anti-piracy mechanism deal with people who just copy the APK around but don't actually modify it? This seems like it would be the most common case anyhow. On Monday, January 14, 2013 12:28:23 PM UTC-6, btschumy wrote: We've recently implemented anti-piracy code in the

Re: [android-developers] Correct way to implement Activity onDestroy()?

2013-01-15 Thread Kostya Vasilyev
A weak reference may not be collected by the time of onPostExecute, even though that activity instance may have been destroyed (orientation change, etc.). The task would then, presumably, attempt to deliver the results and update the UI of the old activity instance. Really, a better way is to

Re: [android-developers] Correct way to implement Activity onDestroy()?

2013-01-15 Thread Kostya Vasilyev
2013/1/15 G. Blake Meike blake.me...@gmail.com: I should think that would be pretty easy to do with an IntentService: There is only one job running at any time. Just interrupt the thread or flag the job. IntentService uses HandlerThread for its implementation. Even though there can be at

Re: [android-developers] Correct way to implement Activity onDestroy()?

2013-01-15 Thread bob
No, it's not redundant. There is something in Java called a *static inner class*. It is basically a weird use of the word static. Please see this: http://docs.oracle.com/javase/tutorial/java/javaOO/nested.html *A nested class is a member of its enclosing class. Non-static nested classes

Re: [android-developers] Re: Toast not showing on Samsung Galaxy S3 (latest update 4.1.2)

2013-01-15 Thread Kevin Duffey
Ok..I just tried and it worked for me. I have Android 4.1.1, checked for updates nothing there.. so this seems to work for me. I am plugged in via USB debugging. On Tue, Jan 15, 2013 at 4:44 AM, Tobias Lindberg tobias.e.lindb...@gmail.com wrote: Thx :) Try this in your onResume method of an

Re: [android-developers] Using APK Signature to detect .apk tampering (Attn: Dianne??)

2013-01-15 Thread Bill Tschumy
On Jan 15, 2013, at 1:22 PM, bob b...@coolfone.comze.com wrote: How does your anti-piracy mechanism deal with people who just copy the APK around but don't actually modify it? This seems like it would be the most common case anyhow. We also use Google Plays LVL so the ability to run

Re: [android-developers] Re: Toast not showing on Samsung Galaxy S3 (latest update 4.1.2)

2013-01-15 Thread bob
I have also tried this with the Galaxy S3 and 4.1.1, and the Toast shows fine. Here's the code I used: public class MainActivity extends Activity { @Override protected void onResume() { super.onResume(); Toast.makeText(MainActivity.this, The message, Toast.LENGTH_LONG).show(); }

Re: [android-developers] Re: Toast not showing on Samsung Galaxy S3 (latest update 4.1.2)

2013-01-15 Thread Harri Smått
Hi, There's a bug filed on Android bug database; http://code.google.com/p/android/issues/detail?id=35013 In other words, if you disable application notifications, Toasts also are disabled for that particular application. Could this be the reason for behaviour Tobias is facing? -- H On Jan

Re: [android-developers] Re: Toast not showing on Samsung Galaxy S3 (latest update 4.1.2)

2013-01-15 Thread Tobias Lindberg
That must have been it, it started working today and by coincidence my boss came and told me that there is some issues with push so I went and checked there and it was not enabled and well yeah, enabled it and without connecting it it started working again and now when u mention this it makes

Re: [android-developers] Using APK Signature to detect .apk tampering (Attn: Dianne??)

2013-01-15 Thread Kristopher Micinski
That's the easy case to deal with anyhow.. The more exotic case is the mechanism by which you stop the app from having its enforcement code simply stripped out (but analysis + bytecode modification). kris On Tue, Jan 15, 2013 at 3:10 PM, Bill Tschumy b...@otherwise.com wrote: On Jan 15, 2013,

[android-developers] Re: getting a 9-patch button working

2013-01-15 Thread bob
Glad it is working. BTW, if you want some decent 9 patches without a lot of work, I found this app today: https://play.google.com/store/apps/details?id=com.android9patch.viewer On Tuesday, January 15, 2013 12:49:05 PM UTC-6, dashman wrote: Stupid error! when i created the selector file

Re: [android-developers] Correct way to implement Activity onDestroy()?

2013-01-15 Thread Lew
bob wrote: No, it's not redundant. There is something in Java called a *static inner class*. No, there is not. From the JLS: The static keyword may modify the declaration of a member type C within the body of a non-inner class or interface T. Its effect is to declare that C is not an

Re: [android-developers] Re: Toast not showing on Samsung Galaxy S3 (latest update 4.1.2)

2013-01-15 Thread Mark Murphy
Wow. That's an important find. Thanks for pointing this out! On Tue, Jan 15, 2013 at 4:31 PM, Harri Smått har...@gmail.com wrote: Hi, There's a bug filed on Android bug database; http://code.google.com/p/android/issues/detail?id=35013 In other words, if you disable application

[android-developers] display a datepicker on mapview

2013-01-15 Thread John Merlino
I am using google maps api v2 and when the map displays, it renders some markers. Now I would for the user on the same screen to activate a datepicker and select a date, then press enter, so then I cna query databsse and show new markers accordingly. What would be the best approach to do this? And

Re: [android-developers] kSOAP XmlPullParserException

2013-01-15 Thread Kevin Duffey
I don't know for sure.. but your XML looks wrong: cffunction name=TestMethod returnType = string access=remote description=Test Method cfargument name=ID type=numeric cfreturn hello / /cffunction Notice in the cfargument.. you don't have a / at the end? Perhaps that is why? On Tue, Jan 15,

Re: [android-developers] Re: Toast not showing on Samsung Galaxy S3 (latest update 4.1.2)

2013-01-15 Thread Kevin Duffey
Indeed that is important.. why would a toast notification be blocked by that setting? Obviously a bug.. I can't imagine they meant to do that. On Tue, Jan 15, 2013 at 2:09 PM, Mark Murphy mmur...@commonsware.comwrote: Wow. That's an important find. Thanks for pointing this out! On Tue, Jan

Re: [android-developers] display a datepicker on mapview

2013-01-15 Thread TreKing
On Tue, Jan 15, 2013 at 4:15 PM, John Merlino stoici...@aol.com wrote: Now I would for the user on the same screen to activate a datepicker and select a date, then press enter, so then I cna query databsse and show new markers accordingly. What would be the best approach to do this? Do

[android-developers] Re: display a datepicker on mapview

2013-01-15 Thread John Merlino
I first display map with markers on it (defaulting to markers associated with the current date). User can then use datepicker to enter another date, and then they submit it like a form. Then new markers are displayed based on the date selected. The process of querying the dates I handle on the web

Re: [android-developers] Re: BouncyCastle signature value does not match with dotNET signature value.

2013-01-15 Thread mbarbiero
Anybody know about Santuario Apache in Android? Is a JSR105 implementation. I tried install but recieved a error: Conversion to Dalvik format failed with error 1 Santuario Unknown Android Packaging Problem Em terça-feira, 15 de janeiro de 2013 15h39min43s UTC-2, jason_gates escreveu: Hi, No

Re: [android-developers] Re: display a datepicker on mapview

2013-01-15 Thread TreKing
On Tue, Jan 15, 2013 at 5:46 PM, John Merlino stoici...@aol.com wrote: It already falls apart at this point because mDateDisplay is null. If that's the case, then you need to check R.id.showMyDate and verify it exists in the layout of the current activity and is a TextView. Essentially, I am

Re: [android-developers] kSOAP XmlPullParserException

2013-01-15 Thread Lew
andjarnic wrote: I don't know for sure.. but your XML looks wrong: cffunction name=TestMethod returnType = string access=remote description=Test Method cfargument name=ID type=numeric cfreturn hello / /cffunction Notice in the cfargument.. you don't have a / at the end? Perhaps

[android-developers] Re: display a datepicker on mapview

2013-01-15 Thread lbendlin
you're not going to display a date picker _on_ the map. Rather, you'll be rendering first the map fragment and then the date picker inside the same relativelayout so that it will _look_ to the user as if the datepicker is part of the map. But it doesn't have to be, as long as the two can

Re: [android-developers] Unsubscribe

2013-01-15 Thread Paolo Z.
For those still encountering this issue, I resolved it adding the flag http://developer.android.com/reference/android/content/Intent.html#FLAG_RECEIVER_FOREGROUND to the broadcast pending intent, this doesn't force the service to get restarted. Paolo On Sunday, August 12, 2012 9:35:34

Re: [android-developers] Correct way to implement Activity onDestroy()?

2013-01-15 Thread G. Blake Meike
On Tuesday, January 15, 2013 9:54:58 AM UTC-8, RichardC wrote: Conciser holding a WeakReference to the Activity from the AsyncTask. I would argue that this is a bad idea. If the AT is holding the reference so that it can report a result, then, if the reference is broken, the task will

Re: [android-developers] Re: BouncyCastle signature value does not match with dotNET signature value.

2013-01-15 Thread Nikolay Elenkov
On Wed, Jan 16, 2013 at 1:12 AM, Nikolay Elenkov nikolay.elen...@gmail.com wrote: On Jan 16, 2013 12:45 AM, mbarbiero marco.barbi...@gmail.com wrote: My ideia was that the header is in signature, not in Base64. OK, my bad (again...). The signature is just the padded hash encrypted with

Re: [android-developers] Using APK Signature to detect .apk tampering (Attn: Dianne??)

2013-01-15 Thread Nikolay Elenkov
On Wed, Jan 16, 2013 at 4:00 AM, btschumy b...@otherwise.com wrote: On Monday, January 14, 2013 7:05:37 PM UTC-7, Nikolay Elenkov wrote: This is not particularly reliable: if I repackage your app, I can change whatever 'internal' values you have. Perhaps I'm wrong, but a cracker shouldn't

Re: [android-developers] Using APK Signature to detect .apk tampering (Attn: Dianne??)

2013-01-15 Thread Kristopher Micinski
On Tue, Jan 15, 2013 at 8:27 PM, Nikolay Elenkov nikolay.elen...@gmail.com wrote: On Wed, Jan 16, 2013 at 4:00 AM, btschumy b...@otherwise.com wrote: On Monday, January 14, 2013 7:05:37 PM UTC-7, Nikolay Elenkov wrote: This is not particularly reliable: if I repackage your app, I can change

Re: [android-developers] Is it possible to obtain credentials to send emails via gmail on behalf of a user?

2013-01-15 Thread Kristopher Micinski
I don't see why this would necessarily be a bad thing: it's just part of the security policy of the app. Of course, there's not really a let an app send email as me permission, but you could imagine making this as an app's configuration. (Of course, there is a permission that allows you access

[android-developers] suggest me good mobile tracker application from play store.Which is used to track the mobile location when lost,or change the sim,etc

2013-01-15 Thread Siva Kumar
Dear All, suggest me good mobile tracker application from play store.Which is used to track the mobile location when lost,or change the sim,etc Which is free. That application is used to find the device when it is lost or sim is changed,etc. -- *Thanks Regards, SIVAKUMAR.J