-
-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Input aar file type support #9
Comments
@roblav96 for the time being you can extract the |
@roblav96 A little unrelated to the issue, but thought it's worth sharing - I tried inputting as many jars and aars into the generator and it kind of... worked. Due to limitations in TypeScript and JavaScript modules (namespaces) that contain For these reasons we are rolling out dts generation support behind a |
@Pip3r4o Interesting. That might explain why I could never get full https://github.com/OneSignal/OneSignal-Android-SDK declarations since it required What's strange is that when I throw declare module com {
export module soundcloud {
export module android {
export module crop {
export class Crop extends java.lang.Object {
public static REQUEST_CROP: number;
public static REQUEST_PICK: number;
public static RESULT_ERROR: number;
public start(param0: android.content.Context, param1: android.support.v4.app.Fragment, param2: number): void;
public static pickImage(param0: android.app.Activity): void;
public start(param0: android.content.Context, param1: android.support.v4.app.Fragment): void;
public asSquare(): com.soundcloud.android.crop.Crop;
public static of(param0: android.net.Uri, param1: android.net.Uri): com.soundcloud.android.crop.Crop;
...
}
}
}
}
} |
@roblav96 declarations do come out fine-looking, executing |
@Pip3r4o Yes that's certainly true. |
How would I go about using an
aar
file instead ofjar
? I'd like to inputplay-services-maps-9.4.0.aar
into the dts-generator.The text was updated successfully, but these errors were encountered: