Re: [android-developers] Re: Problem Installing app

2010-08-25 Thread Kostya Vasilyev
There are apps in Market that can read and email logcat. -- Kostya Vasilyev -- http://kmansoft.wordpress.com 25.08.2010 9:35 пользователь Ajmer singh ajmer.si...@evontech.com написал: Hi Problem is at My client end.Client is opening the .apk file from the email sent by me. Somebody please let

Re: [android-developers] Further Info

2010-08-25 Thread Kostya Vasilyev
Since the Activity is your own, add a call to finish() in onCreate, after starting the service and the next activity. -- Kostya Vasilyev -- http://kmansoft.wordpress.com 25.08.2010 4:32 пользователь Call_Waiting team.mu.capt...@gmail.com написал: This is what I found from in my researching

[android-developers] Re: LVL found to be easy to crack

2010-08-25 Thread Hugo Visser
OK, I see your point, that could slow them down, but it would slow me down for sure, maintaining a native and a Java project. Not the mention the bugs you can get from native code... But agreed, it's an option. Hugo On Aug 24, 5:23 pm, a1 arco...@gmail.com wrote: On 24 Sie, 16:15, Hugo Visser

[android-developers] Re: App breaks for some users after they update from the Market

2010-08-25 Thread Pent
Update clears your statics, so you might expect extra bugs to come up around that time I guess e.g. if they're not reinitialized properly. The classdefnotfound one is obviously not from statics however. I've had that one as well, for one of my internal classes, but I can't pin it to and update

[android-developers] Re: AndroidManifest.xml for jar files ?

2010-08-25 Thread user009
Basically the jar file is added to BootClass. This jar file has a Broadcast receiver for SMS; which parses the sms and sends to a native code (.so). My question is how to set android.permission.RECEIVE_SMS for this code/receiver since there is no java 'project' as such. Thanks Aby On Aug 25,

Re: [android-developers] Passing variables using intents

2010-08-25 Thread Kostya Vasilyev
25.08.2010 5:12, kingh32 пишет: //round.setText(String.valueOf(round)); The app crashes if I include this line, I've tried it for all of the variables I don't see a variable named round. There is roundVal, but it's not initialized, and is therefore null. You should add code to call

Re: [android-developers] Re: Problem Installing app

2010-08-25 Thread Ajmer singh
Hi I think this might be the possible reason for the error. In the Android manifest file i am using android:minSdkVersion attributes of the uses-sdk to 1, Though i have selected the Build Target version 2.1 at the project creation time.Please confirm whether i am doing it wrong and also let me

[android-developers] Re: hyphenated Android directory names and SVN

2010-08-25 Thread Bob Kerns
You have a broken Subversion installation. If it occurs from both the command-line client, and TortoiseSVN, I would guess the problem lies on the server. The server can be configured with various scripts to do things like access control, or implement checkin policies, trigger builds, etc. My

[android-developers] Re: USB ports on N1 - usable?

2010-08-25 Thread FrankG
On 24 Aug., 17:13, Chris Stratton cs07...@gmail.com wrote: Depending on how it was written, you tell the driver to switch roles or you unload the driver modules for one role and load those for the other. I assume you mean unload the used usb gadget, if your device really supports this and

[android-developers] Re: Eclipse version for Windows 7 64-bit and JDK 1.6.0_21 64 bit

2010-08-25 Thread Bob Kerns
Short answer: Yes, you should. :=) Longer answer: It will depend somewhat on the available memory on the system (both hardware, and how much other software is using). If you only have the 64-bit JDK installed, you will need to use the 64- bit version, but you can also install the 32-bit version

Re: [android-developers] Re: Android Market Licensing: Now Available!

2010-08-25 Thread Dianne Hackborn
On Tue, Aug 24, 2010 at 8:59 PM, Carl Whalley carl.whal...@googlemail.comwrote: I'm curious about something regarding signing. If someone does as this hack shows and patches the apk, they need to resign the new build. If they then put this version out and its widely distributed, can't Google

Re: [android-developers] Re: AndroidManifest.xml for jar files ?

2010-08-25 Thread Mark Murphy
On Wed, Aug 25, 2010 at 2:57 AM, user009 user...@gmail.com wrote: Basically the jar file is added to BootClass. This jar file has a Broadcast receiver for SMS; which parses the sms and sends to a native code (.so). There is no BootClass in the Android SDK. If this is a firmware question, you

[android-developers] How to configure SDK emulator to start with english instead of japanese?

2010-08-25 Thread Per-Jarle Sæther
Hello all I'm new to Android development and have just startet playing with the SDK. One thing that is annoying is that the emulator always start with Japanese settings. I have found out how to fix this by going into settings and remove all the Japanese stuff, but this is time consuming since I

Re: [android-developers] Re: Android Market Licensing: Now Available!

2010-08-25 Thread Dianne Hackborn
On Tue, Aug 24, 2010 at 1:20 PM, keyeslabs keyes...@gmail.com wrote: LVL is flawed in the same ways that AAL (and other similar approaches) is flawed. Google could do better, and I hope that they will. Obfuscation isn't really going to do much to improve the situation. What is really needed

Re: [android-developers] Re: Android Market Licensing: Now Available!

2010-08-25 Thread Mark Carter
One thing that would help would be to remove the dependency on the Android Market app and open up the licensing system to support sales outside of the Android Market. The aim here is for devs to have a simple way to support Android devices that don't have the Market app, not to avoid the 30% cut.

Re: [android-developers] Re: onClick for the whole screen?

2010-08-25 Thread Pedro Teixeira
Hello, I actually used a tutorial on the camera around... I think they use the approach u mentioned about using the surfaceholder inside a view public void onClick(View arg0) { tnnCamera.takePicture(null, mPictureCallback, mPictureCallback); }

[android-developers] Re: Passing variables using intents

2010-08-25 Thread kingh32
Thank you for your reply. I had this code - roundVal = (TextView)findViewById(R.id.TextViewRound); further down in the code but as you said, where I was trying to setText roundVal had not yet been initialised. Thank you for pointing this (rookie mistake) out - I will sort out the variable names

[android-developers] How to get current pure UTC time?

2010-08-25 Thread optimusgeek
I need to get pure UTC time in application level. It should not be changed by user or location or anything else. When I try with System.currentTimeMillis() or getTime() of Date class, they always return value of local time. If user change date or time, the return value is also changed. I found

Re: [android-developers] Re: Android Market Licensing: Now Available!

2010-08-25 Thread Dianne Hackborn
On Wed, Aug 25, 2010 at 12:51 AM, Mark Carter mjc1...@googlemail.comwrote: One thing that would help would be to remove the dependency on the Android Market app and open up the licensing system to support sales outside of the Android Market. The aim here is for devs to have a simple way to

Re: [android-developers] App breaks for some users after they update from the Market

2010-08-25 Thread Dianne Hackborn
On Tue, Aug 24, 2010 at 3:40 PM, TreKing treking...@gmail.com wrote: Any one know if this is an issue with the Android system itself or the offense to software engineering known as the Android Market that's at fault? I was going to try to help, but... never mind. Anyway, Market is involved

Re: [android-developers] Some confusion on resource IDs

2010-08-25 Thread Lidia G
Hello guys, I have a question on the same theme. I need to use R.drawable.id's dinamicaly, depending on the country choosen, more precisely,depending on a country variable. For example, my screen contains a country flag. If the Deutschaland is the choosen country, i have to display  something

Re: [android-developers] How to get current pure UTC time?

2010-08-25 Thread Kostya Vasilyev
The time here (at least in this piece of code) comes from calling time(NULL), which is really no better than calling new Date().getTime(). You are also confusing local time and time set by the user. Local time is UTC time corrected by the local timezone. Java uses UTC time for internal

Re: [android-developers] Some confusion on resource IDs

2010-08-25 Thread Kostya Vasilyev
25.08.2010 12:38, Lidia G ?: I want to create somehow R.drawable.flag by appending the country extension de . String countryFlag=flag_+mySource.countryExtension ; //something like flag_DE countryFlag=countryFlag.toLowerCase(); // =flag_de

Re: [android-developers] onBackPressed() not working

2010-08-25 Thread Donal Rafferty
Thanks Dianne, Adding this line solved my problem return super.onKeyDown(keyCode, event); And I have changed the code to use moveTaskToBack(true); instead. Thanks On Tue, Aug 24, 2010 at 6:02 PM, Dianne Hackborn hack...@android.comwrote: Starting an activity in onBackPressed is...

[android-developers] Re: How to get current pure UTC time?

2010-08-25 Thread optimusgeek
thank you for your opinion. On 8월25일, 오후5시40분, Kostya Vasilyev kmans...@gmail.com wrote: The time here (at least in this piece of code) comes from calling time(NULL), which is really no better than calling new Date().getTime(). You are also confusing local time and time set by the user.

Re: [android-developers] Re: Android Market Licensing: Now Available!

2010-08-25 Thread Mark Carter
On 25 August 2010 10:31, Dianne Hackborn hack...@android.com wrote: Er I was referring to helping protect apps against piracy. :} I would hope LVL supporting more devices should help against piracy ;) On 25 August 2010 10:31, Dianne Hackborn hack...@android.com wrote: And as far as

[android-developers] How can i set background image for an ImageView dynamically???

2010-08-25 Thread Lidy
Hello guys, I have the following question. I need to use R.drawable.id's dinamicaly, depending on the country choosen, more precisely,depending on a country variable. For example, my screen contains a country flag. If the Deutschaland is the choosen country, i have to display something like

[android-developers] in spinner items display the list array to replace drawable images how can implemented

2010-08-25 Thread narasimha rao
hi i am using spinner in some application in spinner item list array this text replaced in drawable images how can its implemented personalinformation = (Spinner) findViewById(R.id.SpinnerCategory); ArrayAdapter? adapterDefaultpersonal = ArrayAdapter.createFromResource(

Re: [android-developers] Some confusion on resource IDs

2010-08-25 Thread Mark Murphy
The reflection approach is wrapped up in getResources().getIdentifier(). Be sure to cache your results, as this is not fast. On Wed, Aug 25, 2010 at 4:42 AM, Kostya Vasilyev kmans...@gmail.com wrote: 25.08.2010 12:38, Lidia G пишет: I want to create somehow R.drawable.flag by appending the

[android-developers] Re: How can i set background image for an ImageView dynamically???

2010-08-25 Thread Alex
Read about resource qualifiers in the Android Dev Guide: http://developer.android.com/guide/topics/resources/localization.html I have a releated problem. I would like to choose resources based on a custom configuration, but there doesn't seem to be a way to use the built-in resource qualifiers

Re: [android-developers] How can i set background image for an ImageView dynamically???

2010-08-25 Thread Martin Obreshkov
Make your country some king of pair country,flag and when you select country just set country.getflag() as background. On Wed, Aug 25, 2010 at 12:01 PM, Lidy lidyp...@yahoo.com wrote: Hello guys, I have the following question. I need to use R.drawable.id's dinamicaly, depending on the

Re: [android-developers] Comparing results of query from 2 different databases

2010-08-25 Thread Martin Obreshkov
Get the two cursors(sorted by something) and then get the difference in n*logn time. On Wed, Aug 25, 2010 at 8:10 AM, Vibhor Mahajan mahajan.vib...@gmail.comwrote: Hello All, My application maintains its own contact database(localcontacts.db). This database is subset of Android phone

Re: [android-developers] Comparing results of query from 2 different databases

2010-08-25 Thread Mark Murphy
On Wed, Aug 25, 2010 at 1:10 AM, Vibhor Mahajan mahajan.vib...@gmail.com wrote: My application maintains its own contact database(localcontacts.db). This database is subset of Android phone contacts database (People  or ContactsContract). That would seem to be a really bad idea. Duplicating

[android-developers] Re: Licensing server, app cracked.

2010-08-25 Thread sblantipodi
Thanks to Trevor for his reply, I'm really impatient to see this new doc. To you keyeslabs, I'm actually using netbeans, what is the code you posted? An addition to build.xml for eclipse or Android SDK project? On Aug 25, 4:27 am, keyeslabs keyes...@gmail.com wrote: If you can't wait, here's

[android-developers] Re: Does Application update uninstall application

2010-08-25 Thread Jakke
Thank you everyone. I was 99% sure this was the case but It would have been really embarrassing if all users would lost their data so had to check. Thank you Diana for that test tip. I tested it and everything is ok. -- You received this message because you are subscribed to the Google

[android-developers] Re: Android Market Licensing: Now Available!

2010-08-25 Thread Carl Whalley
That's clearer, thanks. Presumably if you upload apps hacked this way to the Market, your account will get pulled. And since this is the only way of getting apps into the Market it remains safe? On Aug 25, 8:36 am, Dianne Hackborn hack...@android.com wrote: On Tue, Aug 24, 2010 at 8:59 PM, Carl

Re: [android-developers] Android Emulator vs iPhone emulator (Why does it take so long)

2010-08-25 Thread Vedran Rodic
On Tue, Aug 24, 2010 at 11:41 PM, Dianne Hackborn hack...@android.com wrote: On Tue, Aug 24, 2010 at 1:12 PM, Vedran Rodic vro...@gmail.com wrote: Both things contribute to iPhone development being significantly faster. I wish google did something like this for Android 3.0. I don't think the

[android-developers] Crash putting spinner in dialog?

2010-08-25 Thread Mystique
Hi, I'm trying to create a form like dialog to accept a few EditText and a spinner. Somehow I can display the spinner but then I start implementing the array and setOnItemSelectedListener it crash. Did I do anything wrong? --- code--- LayoutInflater inflater = (LayoutInflater)

[android-developers] Re: Paid vs Free, My Early Experience

2010-08-25 Thread Michael A.
Add another who would like the option of adding a reasonably sized changelog. In the case of my games (strategy/RPG/adventures) games, e.g., I occasionally need to do significant changes in the savegame structure that invalidate old savefiles (even if I try to minimize this and maintain backward

[android-developers] Re: About ContentProvider designing in my App

2010-08-25 Thread Arpit
Thank you all for answering and guiding me with the design. I wanted to know whether multiple tables can be part of a content provider. I have one database and my requirement is to share the DB across application and hence the Content Provider. And after normalizing my tables, I realize a single

[android-developers] Re: Playing audio to bluetooth headset

2010-08-25 Thread Anzi
can anybody help on this issue. Please let me know if there is any other forum to query Bluetooth related issues, in-case this is not right forum. Regards, Anzi On Aug 18, 4:21 pm, Anzi anji...@gmail.com wrote: Hi, Can we play the audio(amr file) to the Bluetooth headset(no A2DP support) by

[android-developers] Re: airplane mode on

2010-08-25 Thread andrtuto
Please help :( On 24 ago, 00:31, andrtuto andr.t...@gmail.com wrote: Hello :) Sorry for my English, I use the Google translator. I ask about a small application that I'm doing. This is a custom control panel with the things I most use my own phone, you know, something to personalize it a

[android-developers] Calling an API using POST HTTP.

2010-08-25 Thread dhjapan
Hi, I'm working on an application that should connect to twitxr API. As seen on the documentation : The requests are done like this: http://user:md5(pass)@twitxr.com/api/rest/method?param1=valueparam2=value I have no truble working with methods that requires a GET HTTP and authentication, so

Re: [android-developers] App breaks for some users after they update from the Market

2010-08-25 Thread TreKing
On Wed, Aug 25, 2010 at 3:33 AM, Dianne Hackborn hack...@android.comwrote: I was going to try to help, but... never mind. Aw, I knew I was going to regret that =( Well, if you can forgive my asinine comment, I'd certainly appreciate any insight you have to offer.

Re: [android-developers] Re: Internet Connection Bug Or Error ??

2010-08-25 Thread tarek attia
On Sat, Aug 21, 2010 at 1:33 AM, tarek attia tarek.m.at...@gmail.comwrote: On Sat, Aug 21, 2010 at 1:43 AM, Miguel Morales therevolti...@gmail.comwrote: Did you not read my reply? Try pinging an ip that's always up like 4.2.2.2 or similar. So you'll need a few levels of checks, first

[android-developers] Re: How can i set background image for an ImageView dynamically???

2010-08-25 Thread Lidia G
Thank you all for advices.  I solved my problem and a new one. Thank you Alex for advice, i knew about localization in android, but it is not what i need. In my application flag image and some text have to change depending on the country choosen not the locale set on the platform. I found how

[android-developers] Re: Android Market Licensing: Now Available!

2010-08-25 Thread Mike Hearn
LVL is flawed in the same ways that AAL (and other similar approaches) is flawed.  Google could do better, and I hope that they will. I think it's wrong to focus on what Google could or could not do here. Did you read my reply to your original mail? If so what did you think of it? All copy

[android-developers] Re: Android Market Licensing: Now Available!

2010-08-25 Thread keyeslabs
I don't completely buy the assertion that PR wasn't part of the equation in designing, announcing, blogging, and writing press releases about LVL. Piracy is one of the biggest thorns in the side of Android at the moment. If Google doesn't recognize that as both a technical AND a PR problem,

[android-developers] Re: Is anyone's active install % dropping like a rock lately?

2010-08-25 Thread scott19_68
On Aug 21, 3:54 pm, Doug beafd...@gmail.com wrote: Anyway, back to the original observation of this thread: my app has lost another 2% active install base since the original post 7 days ago.  I really hope this trend levels off some time soon, or an explanation makes itself evident.  It's

Re: [android-developers] executing the command ping on Android?

2010-08-25 Thread Rogério de Souza Moraes
Post the logcat when execute this command. Just the code will not help. Take a look at this code: http://forum.sdx-developers.com/android-2-1-development/%28source%29-android-app-development-shellcommand-java-class/ May it help you. Regards, Rogerio 2010/8/24 NGUYEN Cong Kinh

Re: [android-developers] Reducing List sizes

2010-08-25 Thread TreKing
On Tue, Aug 24, 2010 at 8:48 PM, Michael michael...@gmail.com wrote: There is a lot of space above and below the text so I think that space could be reduced (and the font size) so that everything fit without scrolling. I haven't been able to figure out how to reduce that space. Change the

[android-developers] two programming questions about 'twitter for android' app

2010-08-25 Thread elubin
1. what kind of layout do you think they used to get the animated icon pinned to the bottom of the screen? 2. what view did they use for the icons on the main screen? i have tried gridlayout and a linearlayout with icons, but i'm specifically looking for the effect on focus where there is just a

[android-developers] Re: Is anyone's active install % dropping like a rock lately?

2010-08-25 Thread Maps.Huge.Info (Maps API Guru)
I've seen this drop as well. It's been uncharacteristically large from a historical standpoint. One of my apps was approaching 20,000 active installs and suddenly started dropping every day. Now it's below 19,000 and has dropped 5% just in the last two days. My main app has been dropping as well

[android-developers] Re: SSLException: Not trusted server certificate

2010-08-25 Thread gcstang
See my post here : http://groups.google.com/group/android-developers/browse_thread/thread/62d856cdcfa9f16e/dd59b1998d23a660?lnk=gstq=SSL+fake+cert#dd59b1998d23a660 On Aug 24, 2:48 am, Ajay aja...@gmail.com wrote: Hi, Since my app is going to access our own servers, I think I can use the

Re: [android-developers] Re: Greystripe experiences?

2010-08-25 Thread Greg Donald
On Mon, Aug 23, 2010 at 12:54 PM, charlie charlietheb...@gmail.com wrote: 1. i know they do monthly payments. i've never heard of issues with payments. They do quarterly payments, and it's delayed for 4-6 weeks after the quarter ends. The wait is horrible, but I've never not got a payment.

Re: [android-developers] Re: Problem Installing app

2010-08-25 Thread Ajmer singh
Please respond About the possible cause of problem during installation. 2010/8/25 Ajmer singh ajmer.si...@evontech.com Hi I think this might be the possible reason for the error. In the Android manifest file i am using android:minSdkVersion attributes of the uses-sdk to 1, Though i have

Re: [android-developers] Re: Is anyone's active install % dropping like a rock lately?

2010-08-25 Thread TreKing
On Wed, Aug 25, 2010 at 8:00 AM, Maps.Huge.Info (Maps API Guru) cor...@gmail.com wrote: I've seen this drop as well. It's been uncharacteristically large from a historical standpoint. Same here. I've been steadily dropping and after an update over the weekend it's picked up. I'm now down

Re: [android-developers] Some confusion on resource IDs

2010-08-25 Thread Franklin Masao
You referended twice times.. flag.png.     Franklin Masao Hirata 6365-3650 / 4787-5360 GoogleAndroid's developers 2010 All programmers are playwrights and all computers are lousy actors. From: Kostya Vasilyev kmans...@gmail.com To:

Re: [android-developers] Re: App breaks for some users after they update from the Market

2010-08-25 Thread TreKing
On Wed, Aug 25, 2010 at 1:48 AM, Pent tas...@dinglisch.net wrote: Update clears your statics, so you might expect extra bugs to come up around that time I guess e.g. if they're not reinitialized properly. Could you elaborate on this? I do use statics for storing user data and looking at some

[android-developers] Re: Why is android build times so slow...

2010-08-25 Thread Zsolt Vasvari
Will this be changed? Once you reach a certain size, the build time because unberable. For my app, it takes about 30 seconds to do a resource compilation on a fast Dell Studio XPS 16 laptop. I think there is a magic size as it was working fine one day and then it became slow the next, so it

[android-developers] Re: App breaks for some users after they update from the Market

2010-08-25 Thread Yahel
java.lang.NoClassDefFoundError: com.google.android.maps.GeoPoint That's right - my app, which requires the Google Maps addon and should not be allowed to install on devices without it, apparently crashed for someone because it could not find a maps library class. What the .. ? I'm not sure

[android-developers] Re: airplane mode on

2010-08-25 Thread Yahel
Now I want to put a button to turn on airplane mode to at night, but this is where I'm confused. I'm sorry but first google search returns : http://www.mail-archive.com/android-beginn...@googlegroups.com/msg06083.html Would that help ? If so you should really practice your googling-fu :D

[android-developers] Re: App breaks for some users after they update from the Market

2010-08-25 Thread Maps.Huge.Info (Maps API Guru)
I've seen random events like this too. The fix is always the same as well, uninstall and reinstall. I suspect what's happening is the download is getting corrupted in some fashion. It would be logical to assume there is some sort of checking going on to make sure the app was downloaded correctly

Re: [android-developers] Re: App breaks for some users after they update from the Market

2010-08-25 Thread TreKing
On Wed, Aug 25, 2010 at 8:55 AM, Yahel kaye...@gmail.com wrote: I'm not sure but if you have really few of these, they might just come from illegal/torrent-style installs ? Someone tried to install the app on there non-gps device or something ? I thought so, but isn't the installation of an

Re: [android-developers] Ensure GPS has fix before proceeding..

2010-08-25 Thread Sebastián Treu
On 5/13/10, TreKing treking...@gmail.com wrote: 2) What is the best way to display a please wait message or something along those lines while the GPS service is attempting to get a fix (and ideally periodically allow the user to cancel out)? Best is debatable - but you could use an AsyncTask

Re: [android-developers] Re: Which Eclipse?

2010-08-25 Thread Michael Angerman
I am running on a Windows box and my solution is pretty simple as well. I just have two versions of Eclipse installed on my machine. If I am doing my PHP development I need Eclipse 3.6, but when doing Android development I just bring down Eclipse 3.6 and run Eclipse 3.5 for Android development.

[android-developers] Re: Why is android build times so slow...

2010-08-25 Thread sdphil
I'm seeing it rebuild everything even if I just change a java file... On Aug 24, 8:25 pm, Xavier Ducrohet x...@android.com wrote: The problem is that the resource compilation/packaging does not support building incremental. Changing a resource will force a new compilation of the full

Re: [android-developers] Re: App breaks for some users after they update from the Market

2010-08-25 Thread Justin Giles
I've experienced users having crashing problem after an update. I'm not sure if yours is device specific, but I would say almost 99% of the crash reports after updating are from Motorola Droid users (via email and console error reporting). This could mean that a large majority of my user base is

Re: [android-developers] Re: Greystripe experiences?

2010-08-25 Thread Justin Giles
Actually, they are moving to a monthly payment system with a 90 waiting period on the first payment, then monthly after that with a $100 minimum amount you have to have earned before being paid. They focus on full screen ads for Android, but have banner ads now in beta. eCPM fluctuated wildly

Re: [android-developers] Re: App breaks for some users after they update from the Market

2010-08-25 Thread TreKing
On Wed, Aug 25, 2010 at 9:42 AM, Justin Giles jtgi...@gmail.com wrote: I'm not sure if yours is device specific, but I would say almost 99% of the crash reports after updating are from Motorola Droid users (via email and console error reporting). Most of the console reports are indeed

[android-developers] Re: App breaks for some users after they update from the Market

2010-08-25 Thread Yahel
I thought so, but isn't the installation of an apps supposed to fail if the required library is not present? Maybe not if it is not install through the market but directly launched using a file manager after the where-ever-it-came-from download. Yahel -- You received this message because you

[android-developers] Re: App breaks for some users after they update from the Market

2010-08-25 Thread Yahel
I've just noticed after reading your post : Go check out the app called guitar solo. The developper clearly would have put his warning in bold/red/blinking if he it was doable :) Try to ask him what is experience is. Good luck. Yahel -- You received this message because you are subscribed to

[android-developers] Re: Android Market Licensing: Now Available!

2010-08-25 Thread keyeslabs
All copy protection systems have two parts - something they bind to, and the obfuscation that makes it harder to rip that binding out. This is basically correct, if you assume that things like encryption are bundled under the umbrella of obfuscation. So there are obviously two ways copy

[android-developers] Re: How to compare two song files?

2010-08-25 Thread DanH
This is a fairly complex pattern matching problem. I understand there is an iPhone application that does it, but probably by uploading the sound to a larger box that is specially programmed to run the sophisticated algorithms. It's not the sort of thing you'd find embedded in a phone OS. On Aug

Re: [android-developers] Re: App breaks for some users after they update from the Market

2010-08-25 Thread TreKing
On Wed, Aug 25, 2010 at 10:06 AM, Yahel kaye...@gmail.com wrote: Maybe not if it is not install through the market but directly launched using a file manager after the where-ever-it-came-from download. Could be wrong, but don't think the installer matters. For example, if you make an AVD with

Re: [android-developers] How to configure SDK emulator to start with english instead of japanese?

2010-08-25 Thread { Devdroid }
2010/8/25 Per-Jarle Sæther per.jarle.saet...@gmail.com: Hello all I'm new to Android development and have just startet playing with the SDK. One thing that is annoying is that the emulator always start with Japanese settings. I have found out how to fix this by going into settings and remove

Re: [android-developers] Re: How to compare two song files?

2010-08-25 Thread Sena Gbeckor-Kove
ISn't this what Shazam does? S --- Sena Gbeckor-Kove CTO/Founder - imKon UK : +44 7788 146652 s...@imkon.com|www.imkon.com Asia (Singapore) : 35 Selegie Road, #09-14/15 Parklane Shopping Mall, 188307 Singapore, Singapore Europe (London) : 145-157 St John's St, EC1V 4PY London, UK

Re: [android-developers] hyphenated Android directory names and SVN

2010-08-25 Thread { Devdroid }
On 23 August 2010 23:35, andrew aute...@gmail.com wrote: I am having trouble committing to my svn repository changes made in files in my Android project in folders that have a hyphen in the name. In particular /res/layout and /res/layout-land. It *seems* that the svn client doesn't like the

Re: [android-developers] Market app version question

2010-08-25 Thread { Devdroid }
On 24 August 2010 16:12, Alex Xin xinxi...@gmail.com wrote: Hi, I've check out the android-market-api, it's great but I have a problem: It requires me to use my Google account to login, I can do that, but if I ask my user to to the same thing, are there any risks for my users that their

Re: [android-developers] Re: How to compare two song files?

2010-08-25 Thread Carlos Silva
On Wed, Aug 25, 2010 at 16:30, Sena Gbeckor-Kove s...@imkon.com wrote: ISn't this what Shazam does? S Yep -- 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] How to configure SDK emulator to start with english instead of japanese?

2010-08-25 Thread Kostya Vasilyev
25.08.2010 19:28, { Devdroid } пишет: Hello all I'm new to Android development and have just startet playing with the SDK. One thing that is annoying is that the emulator always start with Japanese settings. I have found out how to fix this by going into settings and remove all the

Re: [android-developers] Market app version question

2010-08-25 Thread { Devdroid }
Why you do not make your app quering *your* server then? And your server querys google. To make things clear - I do not mean your server to offer same API google maket does. All you need is to expose recent version number of your app. It can be in any form you app would be able to query and

Re: [android-developers] Android Emulator vs iPhone emulator (Why does it take so long)

2010-08-25 Thread Frank Weiss
Just to be a bit cheeky, why use the Android emulator at all? You know it doesn't cost $99/year to to run your Android apps on a device. But yes, I'm using both Android and iPhone/iPad SDKs and Android SDK is a bit klutzy and slow. -- You received this message because you are subscribed to the

[android-developers] Re: Android bitmap allocation weirdness

2010-08-25 Thread DanH
The first array is 20 MB. The second is also 20 MB. What's the problem? On Aug 24, 4:28 pm, Viktor vilainpe...@gmail.com wrote: I'm having some trouble understanding why this code public class BitmapAllocTest extends Activity {     /** Called when the activity is first created. */    

Re: [android-developers] Re: Best way to store restaurant data

2010-08-25 Thread Frank Weiss
An app I'm developing uses URLConnection, others like to use HttpClient. I suggest you find some sample code that does something similar and study how it's done. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: User request refund 20 days after purchase

2010-08-25 Thread niko20
Hi, Yep I had the same thing, a user asked for a refund 3 months after the purchase. I immediately gave it to them. It's better to actually have good customer service - a thing that is sorely lacking in most businesses these days. -niko On Aug 24, 2:46 pm, Federico Paolinelli fedep...@gmail.com

[android-developers] Resources, examples or tutorials to develop a custom fullscreen IME

2010-08-25 Thread Stefan Klumpp
I try to find resources on how to develop a fullscreen IME (one that covers the whole screen size) for Android. Someone asked the same question here: http://stackoverflow.com/questions/2749964 but no response so far. Anyone here can help? -- You received this message because you are subscribed

[android-developers] Listing ROM apps

2010-08-25 Thread { Devdroid }
Hi, Is there any app that can list ROM apps? There's App List app on Market but it only lists user installed apps, while I need to know what's preinstalled on user device. Alternatively, maybe anyone knows if there's a website that lists things like that for Android? -- You received this

[android-developers] Re: Resources, examples or tutorials to develop a custom fullscreen IME

2010-08-25 Thread Alessandro Pellizzari
Il Wed, 25 Aug 2010 08:59:35 -0700, Stefan Klumpp ha scritto: I try to find resources on how to develop a fullscreen IME (one that covers the whole screen size) for Android. Someone asked the same question here: http://stackoverflow.com/questions/2749964 but no response so far. Anyone here

[android-developers] Re: Unserializing objects via the Hessian web protocol leads to ClassNotFoundException

2010-08-25 Thread DanH
You can never load a class without its package name. The message is saying that a class in the null package named NewsSetCategory cannot be found. Since classes in the null package are characteristic of toy applications, NewsSetCategory is probably a toy application on the source platform and is

[android-developers] Re: Listing ROM apps

2010-08-25 Thread Maps.Huge.Info (Maps API Guru)
There's a directory that contains the installed apps: /system/app If you can list that, which I think you can do without any additional permissions or root access, you should get what you want. -John Coryat -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Android bitmap allocation weirdness

2010-08-25 Thread DanH
OK, I see that you're nulling b between the two allocations. But that doesn't assure that all pointers to the array are destroyed. Try placing the = new and = null statements in a called method ( just for grins return b from that method and assign it in your original method). On Aug 25, 10:40 

[android-developers] Re: Android Emulator vs iPhone emulator (Why does it take so long)

2010-08-25 Thread DanH
Actually, I figure it would cost me in the neighborhood of $300-400 a year. On Aug 25, 10:39 am, Frank Weiss fewe...@gmail.com wrote: Just to be a bit cheeky, why use the Android emulator at all? You know it doesn't cost $99/year to to run your Android apps on a device. But yes, I'm using

[android-developers] Re: Testing several projects with a single test project

2010-08-25 Thread A. Elk
You can make one test package that is capable of testing several applications, but it can only test one app at a time. For each new app you want to test, you have to update AndroidManifest.xml to point to the new target app, re-build the test package, and re-install it. What is your use case? Do

Re: [android-developers] Android Emulator vs iPhone emulator (Why does it take so long)

2010-08-25 Thread Sebastián Treu
On 8/25/10, Frank Weiss fewe...@gmail.com wrote: Just to be a bit cheeky, why use the Android emulator at all? You know it doesn't cost $99/year to to run your Android apps on a device. Android development does not end on your country. I can't believe i'm reading this. -- If you want freedom,

Re: [android-developers] Crash putting spinner in dialog?

2010-08-25 Thread TreKing
On Wed, Aug 25, 2010 at 5:48 AM, Mystique joven.ch...@gmail.com wrote: Somehow I can display the spinner but then I start implementing the array and setOnItemSelectedListener it crash. If you have a crash in your app you want help with, posting the crash information (stack trace) is the

Re: [android-developers] Re: Android Market Licensing: Now Available!

2010-08-25 Thread Dianne Hackborn
On Wed, Aug 25, 2010 at 1:56 AM, Mark Carter mjc1...@googlemail.com wrote: Yes, I want a simple way to reach out to a market that is likely to be tens (hundreds?) of millions of users in a couple of years' time. I see lots of tablets out there that don't run Android Market but run my app

Re: [android-developers] Re: Android Market Licensing: Now Available!

2010-08-25 Thread Dianne Hackborn
On Wed, Aug 25, 2010 at 8:13 AM, keyeslabs keyes...@gmail.com wrote: Again, my contention is that something stronger than obfuscation is needed to lock the APK down. OS-level APK encryption support in addition to license verification. I would like to see us get to the point that users must

Re: [android-developers] Re: Android Market Licensing: Now Available!

2010-08-25 Thread Dianne Hackborn
On Wed, Aug 25, 2010 at 5:25 AM, keyeslabs keyes...@gmail.com wrote: I don't completely buy the assertion that PR wasn't part of the equation in designing, announcing, blogging, and writing press releases about LVL. Piracy is one of the biggest thorns in the side of Android at the moment.

Re: [android-developers] Re: Android Market Licensing: Now Available!

2010-08-25 Thread Kostya Vasilyev
25.08.2010 21:04, Dianne Hackborn пишет: If there are other suggestions that will actually make things harder without doing that, I would certainly like to hear them. Um, make the Market App side of LVL check that the application making LVL calls is signed with the same key as the .apk

  1   2   3   >