[android-developers] Re: Use classes defined inside other applications

2009-08-31 Thread Abu
U can use dalvik.system.DexFile class to access class available in another APK DexFile d = DexFile( d.entries() will give u an enumeration of classes available in the APK - Hope this will answer ur question Abu 2009/8/31 Lutz Schönemann > Hi, > > is it possible to use classes that are defin

[android-developers] Re: Use classes defined inside other applications

2009-08-31 Thread Lutz Schönemann
I managed it by creating a new Java-Project set the "Project Reference" to that project and also added that project to the "Java Build Path". Is that identical to creating a jar file and specify it in the manifest file? Am 31.08.2009 um 14:22 schrieb Alessio Grumiro: > you have to create

[android-developers] Re: Use classes defined inside other applications

2009-08-31 Thread Alessio Grumiro
you have to create a jar file and import jar library in other projects 2009/8/31 Lutz Schönemann > Hi, > > is it possible to use classes that are defined in other applications? > > I have two dependent projects and want to use classes from one project > inside the other. I use eclipse and in the