[android-developers] Root status to application

2011-03-29 Thread Abhyudai Shanker
Hi, I am trying to build an application which can be much more useful if it can be run as a root application. Is der a way to provide root status to an application. Regards Abhyudai -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Shell Console for Android

2011-01-28 Thread Abhyudai Shanker
Hi everyone, I am trying to build a shell console for Android, much like a command prompt in windows or any OS on the PC. However I am unable to understand how to start with the process. I cant really understand the underlying working which would be required to get the console working. If

[android-developers] Patches in Android

2010-11-19 Thread Abhyudai Shanker
Hi, I am a novice at Android Porting. Though I have a slight idea why it is done, I was just wondering if someone could explain to me the actual need of patching the Android kernel before we can port Android to the target hardware. Also a slight idea as to how it is done and what do we actually

[android-developers] Porting on moto E6

2010-11-08 Thread Abhyudai Shanker
Hi, Has anybody ported android to moto rokr E6? I am trying to do the same, however, being an amateur I cant understand the exact process. I have a ported a linux 2.6.x version on my rokr. I have also obtained the android images (ramdisk.img, system.img and userdata.img) after compilation of the

[android-developers] Android on Chinese Mobile

2010-08-04 Thread Abhyudai Shanker
Hi, I want to load Android to a Chinese phone. Is there any basic specification in the phone which I must fulfill in order to make sure that it supports Android? Has anyone tried doing any such thing before. I just want to customize Android for another phone, so what specifications should I

[android-developers] Re: classes

2010-07-12 Thread Abhyudai Shanker
Guys resolved it.. Thanks Abhyudai -- 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] classes

2010-07-11 Thread Abhyudai Shanker
Hey Guys, Is it possible to create another classes object in a class in android. *I am tryin to do the following:* /* * Copyright (C) 2009 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the License); * you may not use this file except in compliance with

[android-developers] 4001b180 exception

2010-07-10 Thread Abhyudai Shanker
Hey Guys, In my mobile log, m getting the following exception: W/dalvikvm( 902): threadid=3: thread exiting with uncaught exception (group=0x4001b180) Does anyone happen to know what this exception refers to and how can I get rid of it. Coz, my complete program stops due to this exception.

[android-developers] file handling : reading a file in internal storage

2010-07-09 Thread Abhyudai Shanker
hey guys, The following is my code: OutputStreamWriter out2 = new OutputStreamWriter(openFileOutput(myfilename2.txt,1)); sa_lt=3 2 1; out2.write(sa_lt); // close the file out2.close(); InputStreamReader in2 = new

[android-developers] where does openFileOutput store the file

2010-07-06 Thread Abhyudai Shanker
Hey guys, M trying to write a file using openFileOutput, using the following snippet: // open myfilename.txt for writing OutputStreamWriter out = new OutputStreamWriter(openFileOutput(myfilename.txt,0)); // write the contents on mySettings to the file

[android-developers] TabActivity and JNI

2010-07-06 Thread Abhyudai Shanker
Hey Guys, I just discovered that I cant call my JNI function from my TabActivity which I am extending as I want Tabs in my GUI. Is there a solution to this. Please help Abhyudai -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: TabActivity and JNI

2010-07-06 Thread Abhyudai Shanker
Hey guys, please reply. In real need of help...:-) Abhyudai On Tue, Jul 6, 2010 at 5:34 PM, Abhyudai Shanker abhyudai.shan...@gmail.com wrote: Hey Guys, I just discovered that I cant call my JNI function from my TabActivity which I am extending as I want Tabs in my GUI

[android-developers] Tabs- Each calling a different activity

2010-06-29 Thread Abhyudai Shanker
Hey guys, I am trying to build a GUI for my application using tabs. I have been able to get tabs up and running, and each tab runs a separate activity, i.e. when i switch tabs, i switch activities also. But presently I am only printing text in each of my tabs using the following code: package