gluonhq / gluonfx-gradle-plugin

Plugin that simplifies using Gluon Client for Java/JavaFX gradle projects
BSD 3-Clause "New" or "Revised" License
99 stars 20 forks source link

How to propperly add .Aar depedencies? #192

Open ctoabidmaqbool opened 2 months ago

ctoabidmaqbool commented 2 months ago

Hi! In old javafxmobile-plugin, somethings like this can be used to include .aar files (and get .jar in resources while in development stage)

dependencies {
    androidCompile 'com.github.andob:android-awt:1.0.1'
    androidCompile 'com.android.support:support-v4:28.0.0'
    compile 'org.lsposed.hiddenapibypass:hiddenapibypass:4.3'
}
project.afterEvaluate {
    explodeAarDependencies(project.configurations.androidCompile)
    explodeAarDependencies(project.configurations.compile)
}

but in gluonfx-gradle-plugin or gluonfx-maven-plugin i can't find such an option e.g. explodeAarDependencies