You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How do I import all the dependencies required for a jar file I'm setting as input?
First I want to say, this repository is a game changer for debugging native Android plugins. I'm using it to see exactly what APIs are exposed to TypeScript for any .jar file.
Exception in thread "main" java.lang.NoClassDefFoundError: Couldn't find class: java.lang.Exception required by class: bolts.AggregateException. You need to provide the jar containing the missing class: java.lang.Exception
What I've been doing so far is adding android.jar from $ANDROID_HOME/platforms/android-23/android.jar and adding it to an input like so:
Exception in thread "main" java.lang.NoClassDefFoundError: Couldn't find class: com.amazon.device.messaging.ADMMessageHandlerBase required by class: com.onesignal.ADMMessageHandler. You need to provide the jar containing the missing class: com.amazon.device.messaging.ADMMessageHandlerBase
Since the android.jar file does not contain com.amazon.device classes.
How do I import all the dependencies required for a jar file I'm setting as input?
The text was updated successfully, but these errors were encountered:
TLDR
First I want to say, this repository is a game changer for debugging native Android plugins. I'm using it to see exactly what APIs are exposed to TypeScript for any
.jar
file.For example, here's a gist of the BoltsFramework/Bolts-Android bolts.Task.d.ts.
I'm having an issue with
dts-generator.jar
and detecting dependentcies for the inputjar
file.Example:
Error:
What I've been doing so far is adding
android.jar
from$ANDROID_HOME/platforms/android-23/android.jar
and adding it to an input like so:Which most of the time results in a working output of
*.d.ts
files.Although sometimes for example,
Errors
Since the
android.jar
file does not containcom.amazon.device
classes.How do I import all the dependencies required for a
jar
file I'm setting as input?The text was updated successfully, but these errors were encountered: