Hallo,
ich habe bisher folgendes festgestellt ...
Die JAR Dateien haben keine classes.dex Datei, dadurch kann diese nicht auf dem selben Weg wie die APK eingebunden werden.
Ich habe ein Beispiel gefunden wie dies eingebunden werden kann, allerdings verstehe ich diese nicht wirklich ...
Re my approach. Here's my Java class:
public class Foo
{
public int Bar(final Activity activity)
{
activity.runOnUiThread(new Runnable()
{
@Override
public void run()
{
Toast.makeText(activity.getApplicationContext(), "Hello world from a Java .jar library", Toast.LENGTH_SHORT).show();
}
});
return 57;
}
}
Here's my Delphi import
unit:
unit FooU;
interface
uses
Androidapi.JNIBridge,
Androidapi.JarBridge,
Androidapi.JNI.JavaTypes,
Androidapi.JNI.App;
type
JFoo = interface;
JFooClass = interface(JObjectClass)
['{D867F94E-8E45-4F10-8045-ADB4951608FA}']
end;
[JavaJarSignature('
com.blong.test.Foo', 'foo_dex.jar')]
JFoo = interface(JObject)
['{510A0F39-4CFC-4F03-A450-06E26503ECFA}']
{Methods}
function Bar(Activity: JActivity): Integer; cdecl;
end;
TJFoo = class(TJarGenericImport<JFooClass, JFoo>)
end;
implementation
end.
Quelle:
https://plus.google.com/117591599539...ts/Tc7viMithGi
// Bereich Kommentar
Gibt es eine Erklärung wie man die Java Signatur von einer JAR Datei bekommt?