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

2010-08-24 Thread Chris Stratton
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. Not having usb based adb available is a major annoyance, and why as a practical matter I haven't played with it beyond reading the id information from so

Re: [android-developers] Re: Newbie's Android problem

2010-08-24 Thread Chris Stewart
I'll add, that if it's the first time you're booting the emulator, it might be taking longer than future requests. I certainly can't prove that definitively, but it seems to me that more is happening behind the scenes that first time as it's prepping the emulator for first use. -- Chris Stewart h

[android-developers] Re: Widget RemoteViews question

2010-08-24 Thread Paul Turchenko
I would go this way: have images for "default" skin in you application and then at runtime resolve other applications that contain alternative skind and grab resources from them. When user decides to change the skin, you just enumerate over available skins and use different resources to supply Remo

[android-developers] Re: Can I use Android source code in my Application(Commercial)

2010-08-24 Thread Chris Stratton
On Aug 24, 10:51 am, Paul Turchenko wrote: > AFAICT, since Android source is under Apache License, you will have to > opensource you application if you use their code (but it shouldn't > mean it can't be commercial). To get more idea you should probably > read license that covers Android's source

Re: [android-developers] Re: Problem with SAX parsing

2010-08-24 Thread Chris Stewart
+1 for XmlPull. I tried giving SAX a go but had so many issues structurally with how I organized my code. XmlPull gives you a more "serial" approach and makes it easier to integrate, while providing an enormous performance boost over DOM. -- Chris Stewart http://chriswstewart.com Fantasy Footb

Re: [android-developers] New to Android and programming

2010-08-24 Thread Chris Stewart
I'll likely echo what TreKing said. While it's definitely possible to jump in without prior Java experience, even just a bit, it will be hard. That kind of hurdle often knocks someone's interest off the rails. While this won't directly answer your question, it's related and might help you or som

[android-developers] Re: Problem with SAX parsing

2010-08-24 Thread Paul Turchenko
Consider using XmlPullParser instead of SAX. It's more convenient for the most cases. On Aug 23, 1:20 pm, Atokarev wrote: > Hi there. I could not get any inner elements during the xml parsing. > looks like parser see only outer tag A. > Could you show me error? > > XML: > > > > > > > When i

[android-developers] onClick for the whole screen?

2010-08-24 Thread Pedro Teixeira
Hi, My question is a little bit silly but.. I know how to set a listener for.. let's say a button or a editext so that when clicked some action happens: buttonOReditextl.setOnClickListener(new View.OnClickListener() { @Override public void onClick(

[android-developers] Re: Newbie's Android problem

2010-08-24 Thread Paul Turchenko
Yeah, and for the future, try starting emulator first and then only deploy an application. On Aug 24, 3:18 pm, Filip Havlicek wrote: > Hi Boban, > > if you see "Android" written or "Android" picture in some blue colors on > your virtual device's screen, it means your device is still booting. You

[android-developers] Re: I want to get system permission?

2010-08-24 Thread Chris Stratton
On Aug 24, 10:11 am, CaryWang wrote: > Do you have anyelse method?I want to know user opreation?e.g.when user run > application i know,exit application i know. You should probably try to rethink your goal in light of the android activity lifecycle. Users don't 'exit' android application under

Re: [android-developers] app idea?

2010-08-24 Thread Chris Stewart
Oh come on TreKing, get hip with the times. Plz! :p -- Chris Stewart http://chriswstewart.com Fantasy Football- Android app for MFL fantasy football owners Fantasy Football Insider

[android-developers] Re: Can I use Android source code in my Application(Commercial)

2010-08-24 Thread Paul Turchenko
AFAICT, since Android source is under Apache License, you will have to opensource you application if you use their code (but it shouldn't mean it can't be commercial). To get more idea you should probably read license that covers Android's source code http://www.apache.org/licenses/LICENSE-2.0. O

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

2010-08-24 Thread Kostya Vasilyev
24.08.2010 17:55, nation-x пишет: Try using your brain and not your emotions and you can probably limit it's impact... Gee, thanks. Wish I had one [ looks at himself in the mirror, does not see any sign of having a brain ] :) -- Kostya Vasilev -- WiFi Manager + pretty widget -- http://kman

[android-developers] Re: Return custom objects tree

2010-08-24 Thread Paul Turchenko
Make CustomObject implement Parcelable. Declare ICustomObject.aidl. This way, AIDL tool could generate stub implementation for your CustomObject. That's how you can transfetr it via IPC. On Aug 23, 1:25 pm, Giordano wrote: > Hi everyone :) > > it's the first message I post in this group, even th

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

2010-08-24 Thread Chris Stratton
I think the suggeston was that the same call to native code accomplish the antipiracy check and some critical part of application functionality. But I'm not sure that native code is any harder to patch, and there are still identifiable syscalls or calls back up to java for i/o to show where it tri

[android-developers] Re: I want to get system permission?

2010-08-24 Thread Paul Turchenko
Having android:sharedUserId="android.uid.system" is not enough. You have to sign your *.apk with the same key that was used to sign other applications with the same sharedUserId. On Aug 24, 5:11 pm, CaryWang wrote: > Do you have anyelse method?I want to know user opreation?e.g.when user run > app

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

2010-08-24 Thread Hugo Visser
No, that won't do it, since the entry point is always Java / Dalvik byte code. Since you can decompile and patch that with relative ease, you can just make the native calls to the crc check library no-ops or whatever and you're done without patching any native lib. Only obfuscation will help to so

Re: [android-developers] Market app version question

2010-08-24 Thread Alex Xin
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 google account may banned because too many connections to Google serve

[android-developers] Setting wallpaper to bitmap

2010-08-24 Thread Neilz
Hi all. I'm setting the wallpaper using any one of the available methods: - getApplicationContext().setWallpaper(bitmap) - WallpaperManager.getInstance(context).setBitmap(bitmap) The image I'm using is 320 * 400, but when it gets set only the center section of the image is displayed, like the ima

Re: [android-developers] I want to get system permission?

2010-08-24 Thread CaryWang
Do you have anyelse method?I want to know user opreation?e.g.when user run application i know,exit application i know. 2010/8/24 Mark Murphy > On Tue, Aug 24, 2010 at 3:17 AM, CaryWang wrote: > > I have a application I write android:sharedUserId="android.uid.system" > > in AndroidManifest.xm

Re: [android-developers] emulator performance

2010-08-24 Thread xiao ling
I have the same question. I really wanna how I can make android emulator run as fast as iphone emulator? I can't see any animation effect on android emulator. On 24/08/2010, at 4:33 AM, CHENG LUO wrote: > Hi there, > > So I developed a small 3d game on Android 1.6 with JPCT, the free 3d > game

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

2010-08-24 Thread FrankG
And how will you switch back to the "normal usb mode" if this should work ? On 24 Aug., 10:00, Chris Miller wrote: > It's not straightforward, but it is possible with a custom kernel. See this > thread for details:http://forum.xda-developers.com/showthread.php?t=694427 > > > > > Assuming I have

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

2010-08-24 Thread user009
Hi Is there any Manifest file for Android jar files ? How to add for code in jar files ? (say if jar included in BOOTCLASSPATH) Thanks Aby -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-deve

Re: [android-developers] Re: Service start intent problem

2010-08-24 Thread Alex Xin
I also want to know why, random FCs on Nexus One. On Mon, Aug 23, 2010 at 7:03 PM, anders wrote: > Hi, > > I've got the same issue, here's my code snapshot: > > (code from the Activity that starts the service) > > Bundle bundle = new Bundle(); > bundle.putString("key1", val1); > bundle.putString

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

2010-08-24 Thread nation-x
I am always amazed at how people always blame everyone else for their problems... this is something I never see from any Google Developer... I don't see excuses. What has the world come to when everyone always has this expectation of entitlement. Noone is forcing you to develop for Android or any o

Re: [android-developers] Re: does Google forbid orientation animation on purpose?

2010-08-24 Thread xiao ling
Thanks for your email. but I'm not focusing on apps level. I wanna modify the source code of frameworks, especially the WindowManagerService.java to implement an animation for screen rotation. I noticed that when I rotate the screen, the WindowOrientationListener will be callbacked, and the setR

[android-developers] Re: does Google forbid orientation animation on purpose?

2010-08-24 Thread nation-x
See http://code.google.com/p/floatingimage/ for an example of how to animate rotation... basically, this project overrides the rotation and, when you are looking at an image and rotate the phone, it constantly rotates... there is no rotation lifecycle in this app as far as I can tell. Android Work

Re: [android-developers] Problem Installing app

2010-08-24 Thread TreKing
On Tue, Aug 24, 2010 at 1:51 AM, Ajmer singh wrote: > I am working on a Android application , > OK! > When i tried to download the My App to My Motorola Droid 2.2 > Download from where? > ,It gives an error that "Problem in parsing", > What's "It"? Where are you seeing this error? > I am

[android-developers] Re: What am I looking for

2010-08-24 Thread Bret Foreman
Mark Murphy's book on advanced Android programming has a whole chapter on this: http://www.amazon.com/gp/product/0981678017/ref=oss_product -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-develo

Re: [android-developers] app idea?

2010-08-24 Thread TreKing
On Tue, Aug 24, 2010 at 7:31 AM, Filip Havlicek wrote: > In my android crystal ball, I can see he meant "behind"! I have no idea what that is either, or how it relates to Facebook "n" MySpace. - TreK

[android-developers] Re: Adding a contact without a READ_CONTACTS permission

2010-08-24 Thread Pinheiro
> That only tells you about stuff you are doing.  Which can't be kept in sync > with what is actually in the database, and doesn't prevent you from > colliding with anything already in there. Duplicate contacts aren't that much of a nuisance, imho. They're easy to fix and prevent. Specially if yo

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

2010-08-24 Thread TreKing
On Sun, Aug 22, 2010 at 3:41 PM, Hackenbush wrote: > I am wondering whether I should install a 32 or 64 bit version of Eclipse3.5 > (Ganymede). > I haven't moved into 64-bit land yet, but I presume if you have 64-bit Java and 64-bit OS, you'd go with 64-bit Eclipse. Though that's just me wantin

Re: [android-developers] app idea?

2010-08-24 Thread Filip Havlicek
In my android crystal ball, I can see he meant "behind"! 2010/8/24 TreKing > On Mon, Aug 23, 2010 at 12:33 AM, Łûňąţýk wrote: > >> could we get a behi app ? Plz ? Thanks for reading >> > > I have no idea what "behi" is but, it's probably something you want to ask > them, whoever or whatever it

Re: [android-developers] New to Android and programming

2010-08-24 Thread TreKing
On Sun, Aug 22, 2010 at 1:32 AM, Droidblazer00 wrote: > So would it be better for me to learn Java before getting started with the > SDK and eclipse? Or is it just the same to jump right > in on App development and learn on the fly? > Well, it's definitely not the same, but whether it's "better"

Re: [android-developers] What am I looking for

2010-08-24 Thread Filip Havlicek
Hi Robert, yes, I believe that through parsing the webpage and building it's form in some Java object way will let you manipulate the webpage contents and/or looks afterwards. Best regards, Filip Havlicek 2010/8/23 Robert Templeton > Hi, > > I'm trying to build a web application. What I am try

Re: [android-developers] how to write data to the existing xml file using code in android

2010-08-24 Thread Filip Havlicek
Hi Rammi, what about writing XML reader for your file, adding new nodes programatically and then writing XML writer to write it back? Doesn't work? Best regards, Filip Havlicek 2010/8/23 Rammi > Hi i want to add new nodes to the exiting xml file in android to save > imageurl so plz help to fi

Re: [android-developers] app idea?

2010-08-24 Thread TreKing
On Mon, Aug 23, 2010 at 12:33 AM, Łûňąţýk wrote: > could we get a behi app ? Plz ? Thanks for reading > I have no idea what "behi" is but, it's probably something you want to ask them, whoever or whatever it is. Plz? Thanks for posting. --

Re: [android-developers] Dynamic preferences for a variable number of profiles in an Android app

2010-08-24 Thread TreKing
On Sun, Aug 22, 2010 at 9:31 AM, Unitedroad wrote: > So is there a cleaner and more standards compliant way to do this? http://developer.android.com/reference/android/content/Context.html#getSharedPreferences(java.lang.String, int) Look at the first parameter.

Re: [android-developers] Newbie's Android problem

2010-08-24 Thread Filip Havlicek
Hi Boban, if you see "Android" written or "Android" picture in some blue colors on your virtual device's screen, it means your device is still booting. You have to wait until it shows the typical screen with unlocking options. Best regards, Filip Havlicek 2010/8/22 erakovic.bo...@gmail.com > H

[android-developers] Max bitrate for mp4 files in Android

2010-08-24 Thread Darshan
Hi All, I have 2 mp4 video files for playing in Android. Here is the information on both those files: mp4 File 1: Audio Codec: AAC Audio BitRate = 16000 Audio SampleRate = 16000 Audio SampleSize = 16 Video Codec: H264 Video BitRate = 114000

Re: [android-developers] Re: How to invoke hide method?

2010-08-24 Thread Bin Dou
ok,i got it ,thanks 2010/8/24 Mark Murphy > On Tue, Aug 24, 2010 at 7:35 AM, Bin Dou wrote: > > So how could I detect the call has been connected ? I have already knew > > three kinds of telephone states,CALL_STATE_IDLE, CALL_STATE_RINGING, > > CALL_STATE_OFFHOOK,and what i can do? > > CALL_ST

Re: [android-developers] Re: How to invoke hide method?

2010-08-24 Thread Mark Murphy
On Tue, Aug 24, 2010 at 7:35 AM, Bin Dou wrote: >  So how could I detect the call has been connected ? I have already knew > three kinds of telephone states,CALL_STATE_IDLE, CALL_STATE_RINGING, > CALL_STATE_OFFHOOK,and what i can do? CALL_STATE_OFFHOOK means a phone call is in progress. Or, as th

Re: [android-developers] Re: How to invoke hide method?

2010-08-24 Thread Bin Dou
So how could I detect the call has been connected ? I have already knew three kinds of telephone states,CALL_STATE_IDLE, CALL_STATE_RINGING, CALL_STATE_OFFHOOK,and what i can do? 2010/8/24 Mark Murphy > Don't do it. It is not part of the Android SDK. > > On Tue, Aug 24, 2010 at 7:07 AM, Bin Dou

[android-developers] Re: Home screen widget container

2010-08-24 Thread skink
On Aug 24, 12:55 pm, Mark Murphy wrote: > On Sun, Aug 22, 2010 at 9:06 AM, Alex Roebuck wrote: > > Are home screen "pages" exposed in the API? > > No. The home screen is an application. There are dozens of them. While > some may have some APIs you can use, I am not aware of any that do. > most

[android-developers] How can i copy the contains of data/ to sdcard/

2010-08-24 Thread Shrikk
Hi is there a way to move/copy some file on device to sdcard , once im in shell using sudo ./adb shell need to copy/move the contains of data/tombstones to sdcard/tombstones im using below command mv data/tombstones /sdcard/tombstones "failed on 'tombstones' - Cross-device link" but im getting

Re: [android-developers] Re: How to invoke hide method?

2010-08-24 Thread Mark Murphy
Don't do it. It is not part of the Android SDK. On Tue, Aug 24, 2010 at 7:07 AM, Bin Dou wrote: > anybody could help me? > > 2010/8/23 Bin Dou >> >> I want to judge the call has been connected. >> So I want to invoke method called isAlive() in the hide abstract class >> Connection(com.android.in

[android-developers] Re: How to invoke hide method?

2010-08-24 Thread Bin Dou
anybody could help me? 2010/8/23 Bin Dou > I want to judge the call has been connected. > So I want to invoke method called isAlive() in the hide abstract class > Connection(com.android.internal.telephony)? > > -- You received this message because you are subscribed to the Google Groups "Andro

[android-developers] Re: glDeleteTextures produces strange error (5572216)

2010-08-24 Thread Jason
Hi.. thanks for the insight. I actually considered the same case and implemented and override for the surfaceDestroyed method of the GLSurfaceView, just to see if it was being destroyed. Sure enough, the gl surface is destroyed when I "flip" it out of view with the ViewFlipper. That's fine, as I

Re: [android-developers] I want to get system permission?

2010-08-24 Thread Mark Murphy
On Tue, Aug 24, 2010 at 3:17 AM, CaryWang wrote: > I have a application  I write android:sharedUserId="android.uid.system" > in AndroidManifest.xml. I want to get system permission.I install to HTC > mobile phone.but install fail.error info :Package ... has no signatures that > match those in shar

Re: [android-developers] Home screen widget container

2010-08-24 Thread Mark Murphy
On Sun, Aug 22, 2010 at 9:06 AM, Alex Roebuck wrote: > Are home screen "pages" exposed in the API? No. The home screen is an application. There are dozens of them. While some may have some APIs you can use, I am not aware of any that do. -- Mark Murphy (a Commons Guy) http://commonsware.com | h

[android-developers] creating Hierarchical menu.

2010-08-24 Thread crajesh
Hi All, I am new in android. I want to create Hierarchical menu. So will you please guide me how to create the Hierarchical menu Thanks everyone in Advance. C.Rajesh -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group

[android-developers] Knowledge about app ratings...

2010-08-24 Thread djdamage06
Hello everybody, I want to know if there is a way (by the code) to know if an user have rated our application in the Market... Thanks a lot for your answers :) -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send e

[android-developers] Give back memory to OS

2010-08-24 Thread Nanard
Hi, My app uses big external libraries (it will take me several months to slowly & safely optimize it). Anyway,my app will still be big (8-9Mo once installed). Depending on the file the user opens, it may happend that I get Out Of Memory. I now catch almost all of them, display a message and sto

Re: [android-developers] Re: startLayoutAnimation in reverse order

2010-08-24 Thread Klaus Kartou
I did some more research and found others with the same problem, but no solution: http://groups.google.co.jp/group/android-developers/msg/a60b330dd1745d35 It looks like the issue is related to how the convertViews are re-used in the adapter. Any ideas how to solve this? On Tue, Aug 24, 2010 at 2

Re: [android-developers] Re: Application Screenshots

2010-08-24 Thread Miguel Morales
I agree it's a little harsh, but developers tend to have a short fuse. I would be curious about this myself. On Tue, Aug 24, 2010 at 1:29 AM, Yahel wrote: > This seems like a little over reaction don't you think ? > > People in this group like to answer to courteous and polite questions. > > That

[android-developers] Re: glDeleteTextures produces strange error (5572216)

2010-08-24 Thread jojoma
are you changing between the activity that uses your surface and another one by any chance? because if you are, you're losing the EGL context in which are kept the names/id's of the currently loaded textures. By losing that context all this information simply disappears, without a damn warning... t

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

2010-08-24 Thread a1
If you put antipiracy check (eg. CRC checking to detect package modification) in native code along with some other vital routines, one will have to patch native implementation, it's of course doable, but will take more time. -- Bart Janusz (Beepstreet) On 24 Sie, 08:34, Hugo Visser wrote: > Even

[android-developers] Re: Application Screenshots

2010-08-24 Thread Yahel
This seems like a little over reaction don't you think ? People in this group like to answer to courteous and polite questions. That being said can we know why this such an important matter that you feel the need to call people idiots ? Yahel On 24 août, 01:14, hex6 wrote: > Who is the idiot

Re: [android-developers] New to Android and programming

2010-08-24 Thread lee dallas
Just get started directly to write android app by following the dev. guide in android offcial website. That's what I did (I used to be a c/c++ developer). 2010/8/22 Droidblazer00 > HI everyone, > as the title says i'm new to the Android community, and i don't have > much experience on the develo

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

2010-08-24 Thread Chris Miller
It's not straightforward, but it is possible with a custom kernel. See this thread for details: http://forum.xda-developers.com/showthread.php?t=694427 Assuming I have a USB device I want to attach to a N1, would it be usable? Lets assume I have the drivers or can write them to interact with th

[android-developers] Re: Incoming call diverted indicator

2010-08-24 Thread mikko.martt...@arcomi.fi
Hi, I just wonder how does Nokia phones know it. I have had about 15 different models latest E90, all of them show that little arrow in front of the callers number if the call is diverted to your number. So this really is a phone issue. Rergards Mikko On 19 elo, 05:36, Indicator Veritatis wrot

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

2010-08-24 Thread Trevor Johns
On Tue, Aug 24, 2010 at 12:31 AM, Kostya Vasilyev wrote: > The article states: > > "Even when mangles in ProGuard the licensing library code is easily found > automatically. Since you compile the licensing library into your own code > you can make some changes to it to make it harder to find when

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

2010-08-24 Thread Ajay
Hi, Since my app is going to access our own servers, I think I can use the hack of trusting all certificates. I tried the following & still fails :-( SchemeRegistry schemeRegistry = new SchemeRegistry(); SSLSocketFactory sslSocketFactory = SSLSocketFactory.getSocketFactory(); sslSocketFactory.se

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

2010-08-24 Thread Trevor Johns
So far, in all the cases of cracked apps we've seen, it's been because of the following: 1. The developer did not run a code obfuscating tool (such as ProGuard) on their application; and, 2. The developer implemented the LVL as a drop-in library, without making any modifications to the library cod

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

2010-08-24 Thread Kostya Vasilyev
The article states: "Even when mangles in ProGuard the licensing library code is easily found automatically. Since you compile the licensing library into your own code you can make some changes to it to make it harder to find when obfuscated though." Perhaps it is possible for Google to re-

Re: [android-developers] Re: So can we use Directions API or not in Android?

2010-08-24 Thread Filip Havlicek
And you are sure based on what? Your assumption? I'm just telling you what is written. "Use of the Google Directions API is subject to a query limit of 2,500 directions requests per day." Nothing else is written there about the public limitations. I'm pretty sure the limitations is for all the ap

[android-developers] Virtual KeyPad for Android on OMAP Processor

2010-08-24 Thread rakesh bohra
Hello, I've deployed Android on Omap Processor Board. I've also created some android application which requires user interface (Alpha -Numeric ) input from User. Can anybody help me to invoke the android Virtual Keypad on OMAP Processor ? Your reply will be highly appreciated. Thanks & Regards,

Re: [android-developers] does Google forbid orientation animation on purpose?

2010-08-24 Thread xiao ling
I'm researching the source code, and I wanna implement an animation for default screen rotation. I just need some help. On Tue, Aug 24, 2010 at 3:12 PM, Dianne Hackborn wrote: > What do you mean forbid? The standard platform doesn't have one > implemented. This is not something that is accessib

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

2010-08-24 Thread Federico Paolinelli
On Tue, Aug 24, 2010 at 9:26 AM, Rocky wrote: > > Hi, > Change the email is not a solution, > Try to resolve the problem, it is not a matter of once u sold ur product > that it. > > ---RKJ > > > I wasn't considering that an option :-) -- You received this message because you are subscribed to t

[android-developers] Monkey tool: Launch a particular Activity

2010-08-24 Thread George
I want to launch only a single Activity in a package using Monkey and allow it to perform the random event testing. The only option I see to use -c with CATEGORY_MONKEY and modify my activity in the AndroidManifest to add this category to my activity? Though when I tried with an activity with andr

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

2010-08-24 Thread Rocky
Hi, Change the email is not a solution, Try to resolve the problem, it is not a matter of once u sold ur product that it. ---RKJ On Tue, Aug 24, 2010 at 12:49 PM, KG wrote: > Change your email address. > > On Aug 23, 11:11 pm, Federico Paolinelli wrote: > > I just got an email from an user t

Re: [android-developers] seeking information to get started

2010-08-24 Thread lee dallas
http://developer.android.com/sdk/installing.html 2010/8/24 ashwin shekhar > hi all, > am very new to androids n want to know more abt t. > pls give me informations abt SDK ,JDK,, eclipse etc n why they r > used ??? > how do i install n use tat... > pls posts links to videos n otr ... > > -- > Y

Re: [android-developers] emulator performance

2010-08-24 Thread lee dallas
The emulator make use of software opengl library. So it's normal to have a low performance. 2010/8/24 CHENG LUO > Hi there, > > So I developed a small 3d game on Android 1.6 with JPCT, the free 3d > game engine Android version. It seems the frame rate is really low on > emulator(5 frames per sec

Re: [android-developers] User Space Hardware Abstraction Layer Development Guide

2010-08-24 Thread lee dallas
I would suggest you to have a look of the overlay code in hardware/libhardware/moudule/overlay. In the new HAL architecutre, it introduced a "stub" concept which replaced the legacy architecture which load the c/c++ library from java application/service directly. In "stub", you need to implement so

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

2010-08-24 Thread Kostya Vasilyev
Ask her if she's running a task killer or any other kind of "Android improvement" utility. Every time I get an email from a user saying that my app locks up, doesn't update, etc. - it turns out they are running one of those. Once they get rid of it, problems go away. It's really curious why

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

2010-08-24 Thread KG
Change your email address. On Aug 23, 11:11 pm, Federico Paolinelli wrote: > I just got an email from an user that says that she want me to refund > her (0.99 eur) because "my app causes her nexus one to lock up". > > Now, apart from the curiosity of find out the cause of this lock up, > what is

[android-developers] I want to get system permission?

2010-08-24 Thread CaryWang
I have a application I write android:sharedUserId="android.uid.system" in AndroidManifest.xml. I want to get system permission.I install to HTC mobile phone.but install fail.error info :Package ... has no signatures that match those in shared user android.uid.system. I application need android.uid

Re: [android-developers] does Google forbid orientation animation on purpose?

2010-08-24 Thread Dianne Hackborn
What do you mean forbid? The standard platform doesn't have one implemented. This is not something that is accessible for apps, so not relevant for this group. On Mon, Aug 23, 2010 at 8:12 PM, Xiao wrote: > I'm reading the android source code, and wanna make orientation > animation. I've found

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

2010-08-24 Thread Federico Paolinelli
On Tue, Aug 24, 2010 at 8:37 AM, String wrote: > On Aug 24, 7:11 am, Federico Paolinelli wrote: > >> Now, apart from the curiosity of find out the cause of this lock up, > > Does your app use OpenGL? There's a bug deep in the Android OpenGL > implementation which can cause this. Search this group

<    1   2   3