[android-developers] Re: Inertial Sensor on HTC Hero

2009-10-23 Thread ko5tik
On Oct 1, 12:07 pm, DD daviddiaofri...@gmail.com wrote: get the both at the same time. Therefore, G is decomposed based on the values of pitch and roll that are always out of date; they are not corresponding to the new acclerations. This is where the error comes out. I would say, g is

[android-developers] Re: Make two buttons the same width?

2009-11-09 Thread ko5tik
What about placing them into table layout? then you shall be fine with fill_parent -- 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

[android-developers] Re: Droid phone unable to recognize device

2009-11-10 Thread ko5tik
That's my setup: ubu...@wlka-64l3d4j:~$ cat /etc/udev/rules.d/11-android.rules SUBSYSTEM==usb, ATTRS{idVendor}==0bb4, ATTRS{idProduct}==0c02, MODE=0666, OWNER=ubuntu Trick is to put it before other rules so it gets precencdence ( hence: 11-android.rules ) Vendor ID and product id can be obtained

[android-developers] Re: get device manufacturer or USB device id...

2009-11-10 Thread ko5tik
If you connect to linux box, lsusb and messages log will tell you everything -- 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

[android-developers] Re: Is there any way to display 8000 * 8000 jpeg file without OutOfMemoryException

2009-11-21 Thread ko5tik
Extracting just a single tile out of JPEG file is a really big PITA There are about 27 different variants of JPEG (though not all really matter and are widely used) Usually you've got 8x8 tiles in row-order, and because of entropy encoding you can not navigate just to random tile - you'll

[android-developers] Re: Accelerometer Reading ranges

2010-01-17 Thread ko5tik
On Jan 16, 9:37 pm, MPower123 michaelh...@gmail.com wrote: I just hope theres an API call to set the resolution to 2g or 4g mode. TANJ - AFAIR, there is no such official API in android SDK (though you may be able to hack around or have more luck with native code ) -- You received this

[android-developers] Re: unit testing

2010-01-26 Thread ko5tik
de.pribluda.games.android.lines; import android.content.ContentValues; import mockit.Expectations; import mockit.Mocked; import mockit.Verifications; import org.junit.Test; /** * @author ko5tik */ public class HighscoreEntryTest { @Mocked ContentValues values; /** * shall marshall itself

[android-developers] Re: Important Undocumented styles

2010-01-29 Thread ko5tik
Ultimate Truth lies in source On Jan 29, 2:19 am, Erik Martino erik.mart...@gmail.com wrote: An important part of creating an android application is making the gui look right. However where do I find documentation for this. An example of what I am looking for is something like this

[android-developers] Re: Android market and other languages...

2010-01-29 Thread ko5tik
On Jan 28, 2:32 am, reyden mr.jakovlje...@gmail.com wrote: I'm writing a free application that's only in Serbian language atm. English version will follow but priority is to get it published on Serbian. I'd like to know will I be able to upload my app on Android Market, or it has to support

[android-developers] Re: How much time it will take to parse

2010-01-29 Thread ko5tik
The problem is DOM parsing - in produces a LOT of objects and garbage collection wile slurping everything in oner big gulp (and usually chokes) What is wrong with SAX or XPP? On Jan 29, 11:59 am, Sasikumar.S sasikumar.it1...@gmail.com wrote: Hi frank, Thank u for ur reply. that question is

[android-developers] Re: Android Programming Class

2010-02-01 Thread ko5tik
On Feb 1, 12:23 am, Kevin Duffey andjar...@gmail.com wrote: Now.. on that note, slightly off topic.. I hope Android (and google) sees an opportunity for potential Android devices that would allow someone like one of us to write some software that prevents the camera/video camera/audio

[android-developers] Re: Android Programming Class

2010-02-01 Thread ko5tik
On Jan 31, 7:23 pm, Kevin Duffey andjar...@gmail.com wrote: Now.. on that note, slightly off topic.. I hope Android (and google) sees an opportunity for potential Android devices that would allow someone like one of us to write some software that prevents the camera/video camera/audio

[android-developers] Re: device shaked? accelerometer once more

2010-02-02 Thread ko5tik
Print out a sensor name and google up the datasheet ( it's bosh sensortec BM 150 or like it ) - as you may guess it's not the best and finest chip out there. Resolution is pretty low, and it is noisy ( +- 8g is pressed into 8 bit ) -- You received this message because you are subscribed to the

[android-developers] Re: How to Generate Android Testing Report in HTML Automatically

2010-02-03 Thread ko5tik
I do not like android instrumentation framework, and switched to mocking everything android. JMockIt seems to be a right tool ( jmock has problems with finals and concrete classes) -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: Working with Strings.xml

2010-02-08 Thread ko5tik
On Feb 7, 9:59 am, CMF manf...@gmail.com wrote: Hi guys~:) I would like to parse the strings.xml Here is my code: Line1: DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance(); Line2: DocumentBuilder builder = factory.newDocumentBuilder(); Line3: Document dom =

[android-developers] Re: expanding android.jar

2010-02-16 Thread ko5tik
On Feb 16, 7:33 am, saru sarucs...@gmail.com wrote: Some classes are NOT PUBLIC like android.os.ServiceManager, android.view.IWindowManager, etc, they are implemented in the mobile devices, but not present in the SDK .jar. This is because these classes are private APIs . now please tell me

[android-developers] Re: Can we write android Junit testcases even we dont have source files?

2010-02-16 Thread ko5tik
You can write test cases using suitable mocking library. I found jmockit (on googlecode) really usefull - other mock frameworks have big problems with mocking of concrete classes. So far I was able to mock interactions with context, file writing etc. -- You received this message because you

[android-developers] Re: Access barcode app from website

2010-02-17 Thread ko5tik
This must be custom URL protocol - just look into their HTML source for inspiration. For example URL: market://search?q=pname:de.pribluda.games.android.lines will force your phone to install my game off market On Feb 16, 11:29 pm, JB jeff.benton.r...@gmail.com wrote: How can I access the

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

2010-02-18 Thread ko5tik
On Feb 18, 9:44 am, Yoshinori yoshinori...@gmail.com wrote: Hi I want to get current time accurately. I tried to get the time by System.currentTimeMillis() but it has the effect on the modificaion by User. So it is not useful for me. Could you kindly tell me how to get current time

[android-developers] Re: Android Market Changed ranking

2010-02-21 Thread ko5tik
On Feb 21, 10:46 am, Narendra Bagade bagadenaren...@gmail.com wrote: Can I develope advertisement screen in app. Anyone knows will google allow to advertise with my app. Regards, Narendra Google adsense beta will accept your app if you provide 100K+ pageviews a day. If you do not meet

[android-developers] Re: How to save variables, even when I close the APP

2010-02-21 Thread ko5tik
You have to use onPause() and onResume() callbacks in your activity. Values can be safely saved in [shared] preferences. I started small JSON marshaller library, it may be of interest for you: http://github.com/ko5tik/jsonserializer ( not much docs there yet, look into testcases as API

[android-developers] Re: Transmit serialized object via HTTP in Android

2010-02-22 Thread ko5tik
to strings and back ( not really advanced by now though ) http://github.com/ko5tik/jsonserializer On Feb 22, 2:09 pm, Sean Hodges seanhodge...@googlemail.com wrote: On Mon, Feb 22, 2010 at 11:57 AM, Ray da Costa raydaco...@gmail.com wrote: Personnel possibility exists to transmit serialized

[android-developers] Re: A question about Android Compass sensitivity

2010-02-25 Thread ko5tik
On Feb 25, 11:33 am, Arindam Nath strider2...@gmail.com wrote: Hello, I am thinking of developing an app on android to measure small distance of up to .5 meters and the direction of motion. The problem is this that i dont know wether i can rely on the inbuilt compass reading to measure

[android-developers] Re: Piracy sucks, or does it?

2010-02-25 Thread ko5tik
Backdating the Phone would be major PITA , and surely screw up all the calendar and synchronization stuff. Is the app in question as expensive to mandate this PITA? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] Re: Piracy sucks, or does it?

2010-02-27 Thread ko5tik
On Feb 26, 1:18 pm, Hekki kaye...@gmail.com wrote: I do not know what a PITA is but I agree. It's acronym: Pain In The A[guess what] -- 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] Re: Project dependency: reusing code and resources from another Android project

2009-12-10 Thread ko5tik
On Dec 10, 2:58 pm, WoodManEXP woodman...@gmail.com wrote: Yes I would like to avoid the copy/pasting as well! Other Java environs, eg NetBeans, have a concept of embedding resources in .jar files (that are needed by the jar file). Apparently the Google team has not has time to implement

[android-developers] Re: How to use clasess on android device

2009-12-17 Thread ko5tik
As previous author states, you should not. But if you are really desperate you can hack around it, like guys from bluetooth library (you can find in on google code, their repository is: http://android-bluetooth.googlecode.com/svn/trunk ) On Dec 17, 11:13 am, saikiran n saikiran@gmail.com

[android-developers] Re: this is just too much

2009-12-20 Thread ko5tik
While this is outright fraud, somebody not living in USA has VERY limited options to prosecute this. Only goodwill of paypal and craigslist will help here. ( I had similar issue in germany, and it took me only 20 minutes to instruct a lawyer to generate CD letter with lawyer bill over 1200

[android-developers] Re: Dont show Link Borders in WebView

2009-12-21 Thread ko5tik
What is wrong with CSS? On Dec 20, 8:21 pm, guruk ilovesi...@gmail.com wrote: Hi, first thanks for all your previous help before :) Now I need a solution for HOW to disable the standart LINK Borders in a WebView! I mean. For example I have a page with some Pics or Text and all with Links.

[android-developers] Re: How can I get the highest framerate with this quellcode?

2010-01-02 Thread ko5tik
Depending on UI event handling to produce smooth and accurately timed animations is usually bad idea In your code, if you remove delay you are just trashing event pipeline, so UI will (and certainly does) become irresponsive. And if you keep it in, your delays are unpredictable (let me Guess,

[android-developers] Re: Where can I get adds for my application?

2010-01-03 Thread ko5tik
As adsense for mobile is still beta, they accept only apps with 100K views a day ( and your is certainly not yet eligible, or you would not ask this question ) BUt good news is, that admob will accept it, and they are about to be bought by google - so you will make it to adsense through back

[android-developers] Re: Chinese company offers translation for right to publish app on their market

2010-01-08 Thread ko5tik
Why would it be illegal? If your application is under something like CC, you already allowed it - and there is a small checkbox which allows application to be taken off phone - also invitation to republish -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Accelerometer Reading ranges

2010-01-15 Thread ko5tik
On Jan 14, 2:17 am, MPower123 michaelh...@gmail.com wrote: Hi, I am writing a game for android phone and I want to know what is the range of values that can be read from the accelerometer? I want to know how many Gs can be read from the accelerometer? Or is this dependant on the phone?

[android-developers] Re: Accelerometer Reading ranges

2010-01-16 Thread ko5tik
It's accurate enough to steer a toy car on display by tilting device, but I would not use this sensor to deliver nuclear warhead ( there definitely better ones ) Of course you can write some filter, but it would be tricky because: - your sample times are not guaranted to be equal (android is

[android-developers] Re: Accelerometer Reading ranges

2010-01-16 Thread ko5tik
I looked at my favorite seller of electronic stuff - while BMA1502 sells for 1.50 from 100+, there are chips for about $120 apiece ( with much better resolution and answer times) - guess which ones will be built into your $300 smartphone ;) -- You received this message because you are subscribed

[android-developers] Re: POJO junit test in an Android project

2010-08-10 Thread ko5tik
On Aug 10, 3:39 am, doug doug_a...@yahoo.com wrote: Oh well, It doesn't seem that the Eclipse plug-in would even run a test case subclassed directly from junit.framework.TestCase.  How do folks test POJOs in Android then? Which junit.framework.TestCase you are using? One coming from

[android-developers] Re: Are external libraries limited by Android version?

2010-08-10 Thread ko5tik
On Aug 9, 1:26 pm, FrEaKmAn zasebn...@gmail.com wrote: Hello Will external library (for parsing JSON) work on 1.5 if it works on 2.1? So are libraries limited by android version? If yes, why? Why do you need external library to parse JSON, if android already provides this functionality? --

[android-developers] Re: Whats first onCreate or the constructor

2010-08-15 Thread ko5tik
In java object does not exist until constructor call is complete - so no other methods can be called on it. However, it can be that different constructor was called (default one?) -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: Converting XML into Java in Android

2010-08-19 Thread ko5tik
databinding frameworks ( less work on your part, big libraries, undiscutable memory footprint, sometimes need to generate some classes ) If you can switch to JSON, I can recommend small databinding framework I developed to use in my highscore system: http://github.com/ko5tik/jsonserializer (Feel free

[android-developers] Re: Greystripe experiences?

2010-08-26 Thread ko5tik
you may try admob. CPM is OK (for my apps), fill rates over 95%, and monthly payments with a month delay. On Aug 26, 6:52 am, andfan22 andfa...@gmail.com wrote: Thanks for the info. Hmmm, that's a shame that their banner ads are only in beta.  I have no desire to include full screen ads in my

[android-developers] Re: String being truncated when its long

2010-08-27 Thread ko5tik
I do following ( much the same as you ), but instead bothering with readline() I just use HTTP Client code to retrieve string: HttpGet get = new HttpGet(pullUrl + ?since= + since); HttpResponse response = httpClient.execute(get); JSONArray jsonArray = new JSONArray(new

[android-developers] Re: String being truncated when its long

2010-08-27 Thread ko5tik
My game has no problem to pull and parse complete highscore list: http://www.pribluda.de/highscore/lines/LinesHighscore/pull?since=0 (ok, usually it is less that that - only updates sine some moment ) I would check with some other tool ( SoapUI us the one ) if server side works properly and

[android-developers] Re: Can you change permissions when you update an app?

2010-08-31 Thread ko5tik
On Aug 29, 12:19 am, chromedude srmorrison...@gmail.com wrote: I ask because I have an app that I want to launch with permissions that apply to it at that stage but I am planning to release an update that will need more permissions, but I do not want users to not install the original app

[android-developers] Re: How to use D-Pad control in Android

2010-09-05 Thread ko5tik
On Sep 3, 3:34 pm, Dhrumil Shah dhrumilsh...@gmail.com wrote: Hey Avigadl, If I change the values of the each direction like DIRECTION_TOP = 0, DIRECTION_DOWN = 1, DIRECTION_RIGHT = 2, DIRECTION_LEFT = 3; it is working? I changed that but unfortunetly its not working. Any other Solution?

[android-developers] Re: Need project idea

2010-09-06 Thread ko5tik
On Sep 5, 8:11 pm, sws-vinpa vincepascu...@gmail.com wrote: Serial ports would be valuable for this sort of application.  ;-) I heard of bluetooth dongles which can be plugged to CAN - even more valuable -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: How to automatically restart widget update service after it is killed?

2010-09-09 Thread ko5tik
I use scheduled alarm, which apparently can not be killed and enable them after boot - it seems that widget gets onOnabled() on first display. I was unable to prove this through documentation through, and it seems that scheduled alarms do not survive package reinstall. regards, -- You received

[android-developers] Re: new service: link to android market from device and computer

2010-04-05 Thread ko5tik
On Apr 5, 2:22 pm, Lance Nanek lna...@gmail.com wrote: What about Android devices without the Market app? I think I asked that last thread on this technique too, heh. In this case just stream out your apk - most devices will recognize it and offer to install it -- You received this message

[android-developers] Re: ad support?

2010-04-05 Thread ko5tik
Use admob since 4 months. February payouts are just processed and landed in my paypal (could be more ;) ) I'm satisfied. -- 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] Re: How do I get the MD5 fingerprint of my application certificate through code?

2010-04-05 Thread ko5tik
On Apr 5, 6:09 pm, Bob Kerns r...@acm.org wrote: Hashcode would not be secure. That is, you can construct an alternate app+signature that would produce the same hash code. That may be good enough for you, but I would discourage such a technique. However, you could construct a secure SHA-1

[android-developers] Re: ad support?

2010-04-06 Thread ko5tik
On Apr 5, 8:25 pm, Abdul Mateen abmat...@gmail.com wrote: Hi ko5tik, How much is your per day revenue with admob ? asking because mine is not good, instead of having 10K+ active installs. Something to laugh at ;) Some 2-3$$ But I do not have to live off it, as android development being my

[android-developers] Re: Activity Being Killed (onDestroy) on Orientation Change

2010-04-06 Thread ko5tik
On Apr 5, 7:50 am, Gaurav Vaish gvaish.i...@gmail.com wrote: b) The new instance which is created is automatically = onCreate, onPause, onStop, onDestroy now that's catastrophic.  Any guesses as to why the new activity is killed? :( God made it that way are you sure, that onStop and

[android-developers] Re: Announcing RoboGuice 1.0

2010-04-06 Thread ko5tik
Hi Michael, Being developer of pico I'm also watching what you are doing ;) Currently I'm not very happy with size (could/should be less) and inheritance. Though inheritance problem could be solved easily - Just create static method which will inject supplied object out of context:

[android-developers] Re: Announcing RoboGuice 1.0

2010-04-07 Thread ko5tik
On Apr 6, 9:06 pm, Michael Burton m...@niskala.org wrote: Hi ko5tik, Good idea, I agree that injection is not as simple as it should be for objects instantiated manually.  I've added your suggestion here:http://code.google.com/p/roboguice/issues/detail?id=34 When you say you're

[android-developers] Re: How to parse JSON in Java?

2010-04-08 Thread ko5tik
... and you can also [un]marshal it into java beans: http://github.com/ko5tik/jsonserializer -- 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

[android-developers] Re: new service: link to android market from device and computer

2010-04-08 Thread ko5tik
On Apr 7, 8:49 pm, Lance Nanek lna...@gmail.com wrote: In this case just stream out your apk That would be great if it could be made to work. The problem is that, as far as I know, there is no way to tell if the particular device accessing the URL has Market installed. It isn't in the user

[android-developers] Re: new service: link to android market from device and computer

2010-04-10 Thread ko5tik
On Apr 10, 2:33 am, Lance Nanek lna...@gmail.com wrote: Delivering the APK on most devices would be very bad. Users with the app installed via that method will not be able to rate or comment on the app's Market page, will not receive updates, will not count toward the app's download or

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

2010-04-11 Thread ko5tik
I'm curious as to whether these are always the same, or generated for us and unique to each SDK install, but I'm not going to look just now. It definitely varies - I use several boxes for development (my older laptop retired to mother in law house ;) ) and I have to uninstall apps compiled

[android-developers] Re: Google Checkout Merchant Account for Swiss Developer/Seller

2010-04-12 Thread ko5tik
On Apr 11, 4:12 pm, oxonom phyrum@sign.ch wrote: Maybe only a Googler can answer the following questions: - Is some working on activating Google Checkout Merchant Accounts for Swiss developers? - If so, when will it be ready? Looking at the struggles of canadian developers, I think it

[android-developers] Re: How to parse JSON in Java?

2010-04-13 Thread ko5tik
On Apr 12, 11:33 am, vworld4u vworl...@gmail.com wrote: You can use JSON Parser readily available for this purpose. Since Android platform is compliant with standard J2SE JDK, you can use the readily available open source JSON parsers. You do not need any 3rd party JSON parsers, as android

[android-developers] Re: Android Phones

2010-04-13 Thread ko5tik
There is a bunch of acer devices starting from about $100 -- 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: twitter and facebook intent : suggestion for the community

2010-04-13 Thread ko5tik
Firinng new Intent(android.content.Intent.ACTION_SEND); will prompt user for application to use for sending something - be it twitter client, or email programm. And there is a lot of twitter APIs around (most of them need some polishing for android though ), even with zero auth. I also would

[android-developers] Re: Being legally harassed, by a large iPhone developer

2010-04-13 Thread ko5tik
On Mar 23, 6:53 pm, Hong lordh...@gmail.com wrote: So NO ONE in the world can ever make a memory type of game EVER, except them? You can, but do not even dare to speak word memory publicly ;) AFAIK, game play itself is not patentable/protectable - only images / artwork / sounds etc. Lego

[android-developers] Re: twitter and facebook intent : suggestion for the community

2010-04-14 Thread ko5tik
On Apr 13, 8:35 pm, Darknoe noe6...@gmail.com wrote: I'm trying to develope a software that connects to facebook/twitter, which api are you using? At the moment I evaluate. There are several java API listed on twitter website: http://apiwiki.twitter.com/Libraries#Javanbsp But I do not like

[android-developers] Re: twitter and facebook intent : suggestion for the community

2010-04-14 Thread ko5tik
On Apr 14, 8:35 am, remy berrebi zehunte...@gmail.com wrote: @ko5tik: thanks for your answer, but i atually want to use intent without any prompt. to let user save time and not click thousand time which program he want that i use to send new twitt :-) Then you need an api. about facebook i

[android-developers] Re: twitter and facebook intent : suggestion for the community

2010-04-14 Thread ko5tik
On Apr 14, 4:44 pm, zehunter zehunte...@gmail.com wrote: just to know, is my idea to use intent/contentprovider, or any other mechanism from external application is not a good idea? Idea is basically good, but it would require some political skills to persuade developers to actually offer

[android-developers] Re: Motorola Droid JPEG files not standard?

2010-04-15 Thread ko5tik
On Apr 14, 7:36 pm, Jules julianna.wil...@gmail.com wrote: Hello, I manage a project where users upload JPEG images for processing. Generally the images are taken with Nikon cameras, but recently one user took images with a Droid and the client software did not recognize the Droid JPEG

[android-developers] Re: Added core Library by mistake..

2010-04-23 Thread ko5tik
Just edit your project classpath path and throw ( do not export) away android.jar -- 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

[android-developers] Re: Unit Testing : Who uses it ?

2010-04-23 Thread ko5tik
On Apr 23, 2:35 pm, Gubatron gubat...@gmail.com wrote: I've come to use Unit Tests organically. Certainly I don't write unit tests first, I write tests to make sure what I've coded works the way it's supposed to. I also add more tests whenever I find bugs. Of course not everything can be

[android-developers] Re: Market update of an app installed from another source?

2010-04-24 Thread ko5tik
On Apr 24, 7:07 am, joebowbeer joe.bowb...@gmail.com wrote: Can an app that was installed from an unknown source be updated from the Market?  For example, if a private beta  is conducted off-market, will the beta users be able to update from the market after the app is published?  Or will

[android-developers] Re: Registering as developer HELP

2010-04-24 Thread ko5tik
On Apr 23, 11:15 pm, ~ TreKing treking...@gmail.com wrote: On Fri, Apr 23, 2010 at 1:51 PM, Waj arjun.s@gmail.com wrote: Is there any alternative for this? Get a parent to sign you up? Google checkout uses billing address as developer information - so no credit card lending... I got

[android-developers] Re: Game stutters when drawing outside screen

2010-04-26 Thread ko5tik
I would say that you do not need to redraw that image part every frame - nothing happens there, and as there are no overlapping window on android there is no need to repair it. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: Game stutters when drawing outside screen

2010-04-26 Thread ko5tik
On Apr 26, 10:26 am, Peter peteroerlem...@gmail.com wrote: Thanks for the suggestion. I probably shoud have mentioned this in my original post. Objects sometimes leave the screen, therefore they are party drawed outside the screen until they are removed. On 320x480 screens this isn't

[android-developers] Re: About AdSense for Mobile Applications

2010-04-27 Thread ko5tik
Google will accept your app if you got enough hitsa ( last time I checked, it was 100K daily ) Go for admob instead: http://admob.com ( and you will land by adsense once they are bought by google ) On Apr 26, 2:41 pm, s-hiro...@hirookaservice.co.jp s- hiro...@hirookaservice.co.jp wrote: Nice

[android-developers] Re: Game stutters when drawing outside screen

2010-04-27 Thread ko5tik
On Apr 27, 2:08 pm, tobias429 ecker...@gmx.de wrote: As soon as I draw a bitmap and the OS has to adjust the size of it, the game begins to stutter as the resize operation takes a lot of CPU time, and what's worse, it seems to take a different amount of time every frame. Don't know if you

[android-developers] Re: htc droid incredible

2010-05-03 Thread ko5tik
On May 2, 5:43 pm, Simone simone.russ...@gmail.com wrote: Just a couple of questions. If I buy the droid incredible, would I be able to: -use it in Italy Why not? It surely can use all the mobile standards in place. -run my applications on it Ig this is compatible with android version -

[android-developers] Re: deserialize byte[]

2010-05-10 Thread ko5tik
Sending serialized bytesteam over the internet is generally bad idea - it's really difficult to ensure serialised bytes compatibility on both ends (JVM version, serial vgersion UID and couple of other factors really matter.) If I were you, I would use JSON / XML data binding for this purpose

[android-developers] Re: paypal mobile payment allowed?

2010-07-06 Thread ko5tik
On Jul 6, 12:01 am, moneytoo m...@seznam.cz wrote: It depends on what you want to charge the user for. From 3.3: All fees received by Developers for Products distributed via the Market must be processed by the Market’s Payment Processor. Definition ofroducts: Software, content and digital

[android-developers] Re: paypal mobile payment allowed?

2010-07-07 Thread ko5tik
On Jul 6, 10:19 am, Al Sutton a...@funkyandroid.com wrote: Just to address your point on collecting information from Googles Market; I've talked to someone at Google about this and it was an absolute no-go. The request wasn't for AndAppStore, but for another project that I was working on

[android-developers] Re: Easy and fast XML Parser?

2010-07-13 Thread ko5tik
will need kind of databinding tool (unfortunately there is not one in android) XStream is easy to use, but not really small. I decided to use JSON in my apps, and wrote small databinding library: http://github.com/ko5tik/jsonserializer It works well on even relatively big JSON files (highscore

[android-developers] Re: Is there any way to parse JSON object into ArrayList or Map...

2010-07-14 Thread ko5tik
://github.com/ko5tik/jsonserializer -- 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

[android-developers] Re: Authenticating an app

2010-07-20 Thread ko5tik
On Jul 19, 9:02 am, Ken ken0624...@gmail.com wrote: Hi, I wonder if it's possible to authenticate an app with a http server. THe server API does not require user name or password, but I'd like to expose the server API to a particular app only (so that it cannot be abused by other program).

[android-developers] Re: Twitter / Facebook source code

2010-07-21 Thread ko5tik
I'm affraid - nowhere. Though there are public APIs available to work with them On Jul 20, 12:23 pm, oriharel ori.ha...@gmail.com wrote: Where can I find the source code of Twitter / Facebook? -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: ADB, HTC Hero and 2.1 Update

2010-07-21 Thread ko5tik
There is also an app shown directly after you connect to USB - I select top option ( just charge ) - otherwise it does not work On Jul 21, 8:00 am, Kiril Nedialkov kiril.nedial...@gmail.com wrote: sry, I forgot to mention it - yes, it is enabled. On Tue, Jul 20, 2010 at 10:29 PM,

[android-developers] Re: How to store questions for quiz type application

2010-08-03 Thread ko5tik
On Aug 3, 10:48 am, Paul Turchenko paul.turche...@gmail.com wrote: I would go with storing your questions in raw XML file (asset) and parsing it on the fly. This way, you can easily change it and (perhaps) later extend your aplication to communicate with web service that has questions. IMHO

[android-developers] Re: Another developer has published an app using the EXACT same name as mine

2010-09-15 Thread ko5tik
Quick search in european trademark register shows me that there are 606 hits on ICE - so probably you have no way to trademark it. On Sep 14, 9:02 pm, Flying Coder av8r.st...@gmail.com wrote: Hi Dan,     Thanks for the feedback.  The app is ICE: In Case of Emergency and has been published on

[android-developers] Re: appbucket: all apps for $9.99 per year, are we just going to watch?

2010-09-20 Thread ko5tik
On Sep 20, 6:43 am, Jason jason.poli...@gmail.com wrote: Unfortunately it's not just paying and refunding that is the issue with these guys. From the twitter account of appbucket: haha...They finally found the crack we have been using for some of our appsTook them long enough. We have

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

2010-09-21 Thread ko5tik
My downloads stagnate and go sometimes back one count ;) I think this is a policy to keep my app from going over 1 ( it was at 9975, dropped to 8700 one day, climbed back to 9975 and stagnates there despite known downloads throigh recommender function) On Aug 26, 4:47 pm, Fabrizio Giudici

[android-developers] Re: how to send data to server while recording

2010-09-21 Thread ko5tik
On Sep 21, 8:13 am, cindy ypu01...@yahoo.com wrote: Hi all, My application needs to record audio and send audio data to server while recording. If User stops audio input, we will stop sending. Give media recorder file descriptor of server socket instead a real file. -- You received this

[android-developers] Re: Service, AsyncTask, or both?

2010-09-22 Thread ko5tik
I do all interchange with my high-score servers ( pretty same use case as yours, also with sent flag ;) ) in broadcast receiver - I request regular updates via non-wakeup alarm ( 30 minutes ). It works fine. Service is needed when you have to do longer piece of work and stay alive. -- You

[android-developers] Re: How much money do you make?

2010-09-22 Thread ko5tik
On Sep 21, 10:35 pm, Indicator Veritatis mej1...@yahoo.com wrote: in Yeltsin's Russia, for example, it was routine to keep one set of books for real and the other to show the taxman. You can figure out which showed the higher profits. It's not quite true ;) There were 3 books - for

[android-developers] Re: appbucket: all apps for $9.99 per year, are we just going to watch?

2010-09-22 Thread ko5tik
so basically he is admitting that he is not stealing himself, but dealing stolen goods - I seen on TV that prosecutors in USA are really eager if they see some crime as they are elected ( did they lied to me?) Is it possible to identify them? Is it possible to locate them? If that's not

[android-developers] Re: how to send data to server while recording

2010-10-08 Thread ko5tik
On Oct 8, 2:44 am, cindy ypu01...@yahoo.com wrote: why we need base64 encoding? Is that AMR ? Because HTTP is text based protocol - your server will barf on binary data (mine does ;) ) -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Re: Any proposed changes to the Android Market?

2010-10-08 Thread ko5tik
I think squelch button for app / developer in your market client would be sufficient - you just stop seeing it. This data could be collected by market and analyzed. BTW, is there some URL where one can see actual ranking of applications? regards -- You received this message because you are

[android-developers] Re: how to send data to server while recording

2010-10-09 Thread ko5tik
Here is my inspiration source: http://www.mattakis.com/blog/kisg/20090708/broadcasting-video-with-android-without-writing-to-the-file-system -- 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] Re: Stolen app on market

2010-10-13 Thread ko5tik
Where ist he located physically? It may be criminal offence in his home jurisdiction, and surely a case for lawsuit. Maybe he is accessible this way -- 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] Re: Computer Vision / Image Processing

2010-12-16 Thread ko5tik
Hi Myles, We are working on OCR library suitable to use in android ( pure java, no external dependencies ) - and such libraries include code for image processing. We also have android demo featuring camera snapshots and performing OCR on them Help and ideas are welcome:

[android-developers] Re: Extract a bit code from a image

2010-12-19 Thread ko5tik
Convert to bit image bz applying thresgholding and then just scan along the lines and cound changes from 0 to 1 We are working on image processing library / OCR here: http://sourceforge.net/projects/javaocr/ It may be usefull for you and works on android On Dec 18, 3:29 pm, denper

[android-developers] Re: Inputs from the Android Camera

2010-12-22 Thread ko5tik
You can put whatever you like as overlay over camera surface view (except another surface view ) See our android sample in javaocr project: http://sourceforge.net/projects/javaocr/ On Dec 22, 2:20 pm, Atik atik0...@gmail.com wrote: hi, so i have downloaded the source of camera app of android.

[android-developers] Re: Which JSON Parser is better

2010-12-25 Thread ko5tik
Built in JSON is adequate, but as every DOM-Kind of parser pretty memory consuming. Pull-Parser is really necessary. -- 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

[android-developers] Re: Which JSON Parser is better

2010-12-26 Thread ko5tik
, and will add pull parsing to it when i get some time. Everybody is welcome to join the effort: https://github.com/ko5tik/jsonserializer -- 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

  1   2   >