[android-porting] Linking libraries fails

2009-11-24 Thread Digambar Rasal
Hi, I have added two shared libraries and using first into second. But when I am trying to build second library, getting error as "arm-eabi/bin/ld: cannot find -labc.so." say I have lib abc and lib xyz. xyz uses abc. abc compiles fine but when xyz is getting compiled it can't find abc. makefile

Re: [android-porting] Re: Linking libraries fails

2009-12-17 Thread Digambar Rasal
prefix lib to your library name. - cheers On Wed, Dec 16, 2009 at 7:33 AM, Daniel Cheng wrote: > I also have the same issue. > Anybody can help me? > Thanks~ > > -- > unsubscribe: > android-porting+unsubscr...@googlegroups.com > website: http://groups.google.com/group/android-porting > -- un

[android-porting] getting Current Application Context

2010-01-11 Thread Digambar Rasal
Hi, Is there a way to get current executing context in normal Java class. Scenario is - Browser plugin can't get context of browser/webkit, but JNI can be used to access Java classes. So I can do find class but most of APIs need Context to execute which I can't figure out how to get. I feel "thi

[android-porting] Re: Publish IBinder interface of native service with system manager

2010-01-13 Thread Digambar Rasal
Hi, I am trying similar scenario and I have created package with - broadcastreceiver with which I am planning to start service - actual System service implementation. On Boot completed intent, onReceive(context) { if ( BOOT_COMPLETED) ServiceManager.addService("test",new TestService (cont

[android-porting] Re: Need help on integrating static libraries into Android source

2010-01-13 Thread Digambar Rasal
It may be useful - $(MYANDROID)/vendor/sample/frameworks/ PlatformLibrary. ( README.txt) -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/group/android-porting

[android-porting] permissions to start SystemService in package

2010-01-13 Thread Digambar Rasal
Hi, I am trying to add new system service and following steps mentioned by Dianne Hackborn @ http://groups.google.com/group/android-porting/browse_thread/thread/f9a383ce949d1557 I have created package with - broadcastreceiver with which I am planning to start system service - actual System servi

[android-porting] Re: permissions to start SystemService in package

2010-01-20 Thread Digambar Rasal
Made changes, signed APP with platform certificate and it runs fine on emulator. Only question is about making it persistent. I tried running few application and this service is still active. So wondering whether it will be killed or not. I will appreciate if you can tell what will be scenario in

[android-porting] Accessing Parcelable from Another package in Service AIDL interface

2010-02-01 Thread Digambar Rasal
Hi, I have platform implementation in platform library - com.pltfrm which has parcelable classes defined. In another package I am adding service but when I try to import parcelable classes from platform package, compilation always fails with - couldn't find import for class com.pltfrm.x. I alread

[android-porting] Memory leak in shared library - any way to find out

2010-02-22 Thread Digambar Rasal
Hi, I am developing a BUILD_SHARED_LIBRARY and want to know if I can manage to find out with ddms or other development tool. I have gone through this thread - http://groups.google.com/group/android-porting/browse_thread/thread/9c84baa10cebbb68/57cd0bafe25c8859?hl=en&ie=UTF-8&oe=UTF-8&q=native+hea

[android-porting] Re: Sample Plugin for Android Webkit

2010-02-24 Thread Digambar Rasal
Android source code has browser plugin example which has detail description about how to write plugins for WebKit - Have a look at : Android_ROOT/development/samples/BrowserPlugin/ Regards Digambar -- unsubscribe: android-porting+unsubscr...@googlegroups.com website: http://groups.google.com/gr