[android-developers] Re: Retreive Special characters from sqlite files.

2013-03-25 Thread Zsolt Vasvari
P.S - letters with accents can be unicode as well... it's actually better this way than to use a special character set. UTF-8 is just an encoding of Unicode. -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: Retreive Special characters from sqlite files.

2013-03-25 Thread Piren
Duh, i wasn't talking about that. He seems to imply that letters with accents = unicode, which is not true. He can build his dictionary using ASCII and still support accents. On Monday, March 25, 2013 8:23:25 AM UTC+2, Zsolt Vasvari wrote: P.S - letters with accents can be unicode as

[android-developers] Review Samsung galaxy s4

2013-03-25 Thread Ba Thanh Nguyen
The Skinny on the S4′s Hardware The S4 handset is a lighter, sleeker upgrade from Samsung’s Galaxy S3, coming it at 0.31-inches thick, compared to the 0.34 inches on the S3. And while isn’t a major difference, the S4 is a whole 0.1 ounces lighter than its predecessor. With a 5-inch screen, the

Re: [android-developers] Re: App works on Samsung Galaxy Note ONLY when I debug it with eclipse

2013-03-25 Thread Mario Giammarco
Il giorno domenica 24 marzo 2013 23:49:40 UTC+1, Kostya Vasilyev ha scritto: If I were to guess, I'd say there might be a thread race issue I suppose a race issue too but usually race issues are random, in this case with 2.3.6 it always works with galaxy it always not work (apart with

[android-developers] Please Try my new Game.

2013-03-25 Thread Mike Portnoy
Please Try my new game. https://play.google.com/store/apps/details?id=com.keken.equation Thanks guys. -- -- 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

Re: [android-developers] Re: How to start again if some third party task killer has killed my app ?

2013-03-25 Thread Streets Of Boston
You haven't found it, because it doesn't exist :-) When the OS or a 3rd party app kills your process, it *kills* it forcefully. And if your app's process is killed your app no longer runs and obviously can't process any callbacks/lifecycle-events, etc. On Sunday, March 24, 2013 3:47:17 AM

[android-developers] Re: Please Try my new Game.

2013-03-25 Thread bob
I couldn't figure out how to play, but it looks cool. Thanks. On Monday, March 25, 2013 7:33:13 AM UTC-5, keken wrote: Please Try my new game. https://play.google.com/store/apps/details?id=com.keken.equation Thanks guys. -- -- You received this message because you are subscribed

[android-developers] De compile Android Application

2013-03-25 Thread Abhijit Potdar
Hi All, I am a penetration tester. Currently i am working on mobile application security project. I De-compiled the application using some open source tools and got a access for source code. Just want to know what would be remediation to patch this vulnerability and can we De-compile every

[android-developers] TimerTask and Handler without inner class.

2013-03-25 Thread bob
Timer task does not need to be an inner class. Afaik, no one can make a class that neds to be inner. -- -- 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

Re: [android-developers] Re: Please Try my new Game.

2013-03-25 Thread Mike Portnoy
Please click the ? icon, it will lead you to help section, if still unable to figure out, that means i need to update the help section to be more understandable Anyways here it goes, in the game you're given a shuffled equations. In the game you would be given something like this. 1=33+10 and

[android-developers] Re: What is the meaning of Incl CPU Time, Excl CPU Time, Incl Real CPU Time, Excl Real CPU Time in DDMS Method Profiling

2013-03-25 Thread hackeric
Ya, it is out of data and, there are no detailed information How to analysis or Where is bottleneck 2012년 9월 27일 목요일 오전 4시 21분 56초 UTC+2, Roger.Yi 님의 말: RT,I got some information form this article : http://developer.android.com/tools/debugging/debugging-tracing.html, but seems it is out

Re: [android-developers] De compile Android Application

2013-03-25 Thread Kristopher Micinski
To which vulnerability are you referring..? The ability to decompile an app depends on how good your decompiler is. Kris On Mon, Mar 25, 2013 at 11:05 AM, Abhijit Potdar potd...@gmail.com wrote: Hi All, I am a penetration tester. Currently i am working on mobile application security

[android-developers] Re: What is the meaning of Incl CPU Time, Excl CPU Time, Incl Real CPU Time, Excl Real CPU Time in DDMS Method Profiling

2013-03-25 Thread bob
Okay. It seems like there are two questions there: *What is the difference between Inclusive and Exclusive?* I believe inclusive counts the time in sub-methods that are called from a given method. So, if A calls B, then inclusive will count the time spent in B. But exclusive does not. Or

[android-developers] Multi app stack problem

2013-03-25 Thread Tobiah
I wrote a home app to lock down my main app. Any time the home button is pressed, the home app just launches the main app. My main app uses the zxing barcode scanner app when a button is pressed. I can permanently cripple zxing by doing this: 1) Press 'scan' button in my app. 2) Scanner pops up

[android-developers] getSkuDetails() returns the price with the developer's set of currency, is it possible to get the buyer's currency code when the purchase is finished?

2013-03-25 Thread sammiwei
On the official site, http://developer.android.com/google/play/billing/billing_reference.html#billing-interface it is said: getSkuDetails() returns a price as Formatted price of the item, including its currency sign. The price does not include tax. I want to have some clarifications: 1. the

[android-developers] Re: SdkController app

2013-03-25 Thread colin
Yes. I built my own copy of the SdkController app and managed to track down the bug. The problem was (and presumably still is) that a string in the protocol being sent from the emulator to the app was being corrupted with four leading zero bytes. I didn't investigate the emulator code, but

Re: [android-developers] getSkuDetails() returns the price with the developer's set of currency, is it possible to get the buyer's currency code when the purchase is finished?

2013-03-25 Thread Nikolay Elenkov
On Tue, Mar 26, 2013 at 10:13 AM, sammiwei weist...@gmail.com wrote: On the official site, http://developer.android.com/google/play/billing/billing_reference.html#billing-interface it is said: getSkuDetails() returns a price as Formatted price of the item, including its currency sign. The