I have developed Ionic v3.20 APK and want to integrate it in another third party android app. I was able to create android library(.aar) from existing Ionic project but having issues while running from another app.
I have few ionic native plugins(HTTP, WebIntent, etc…) and these plugins are not bundled with .aar file. Can any one suggest the approach to bundle the Cordova plugins while generating android library(SDK).
Android doesn’t support loading AARs from other AARs. Instead, what I’ve found that works, is use compileOnly in your library to reference the other AARs, and then have the developer use implementation to reference those AARs in their app/build.gradle.
Cordova plugins aren’t AARs, they’re just a loose association of source files that are copied into your app project. So, you would copy those files into an Android Library project (AAR) and then distribute that AAR to app developers who would then reference that AAR in their Android app (APK)
We are developing Ionic apps since almost 4years but lack of experience in SDK implementation.
Basically we were doing the below changes while creating android library(.aar)
apply plugin: 'com.android.library’ in build.gradle
Commenting the applicationId privateHelpers.extractStringFromManifest(“package”)
And finally running this command in android studio: gradlew assemble
Successfully created the .aar file but could not see the Cordova plugins(plugins are listed but JS files are not copied) in `www\plugins\com.virtualartifacts.webintent\www’ folder.
Can you please tell where we can copy the Cordova plugins while creating .aar file?
I’m not sure if/how this will work with Cordova, since it’ll require the Cordova/Capacitor Cordova compat tooling to understand the AAR and look into it to load JS files, which I don’t think will work.
You can definitely get the native code side of this to work, but would probably need to handle the JS files differently. Probably more trouble than it’s worth for a Cordova plugin. Probably much more doable for capacitor plugins