androidNativeBundle
androidNativeBundle copied to clipboard
a gradle plugin that support publish c/c++ headers to 'aar' and depend those 'aar'
https://docs.gradle.org/current/userguide/configuration_cache.html AGP 7.0.1 Gradle 7.2 > Configuration cache state could not be cached: field 'closure' from type 'org.gradle.api.internal.AbstractTask$ClosureTaskAction': error writing value of type 'com.yy.android.gradle.nativedepend.NativeBundleImportPlugin$_apply_closure3' > Configuration cache state could not...
AAudioTrack2 ``` AAudioTrack2 .cxx build .transforms generated intermediates nativeLib gradle.mk tmp.mk outputs tmp ``` `#include // not found` ```CMake include (${ANDROID_GRADLE_NATIVE_BUNDLE_PLUGIN_MK}) add_library(engine SHARED ardour/AudioEngine/AudioBackend.cpp ardour/AudioEngine/AudioEngine.cpp ardour/Backends/AAudio.cpp smallville7123/MidiMap.cpp smallville7123/TempoGrid.cpp ) target_link_libraries(engine...
Since you have published the plugin to maven central, it is now called `io.github.howardpang:androidNativeBundle`. But when applying the plugin in gradle files it still has an old name: ``` apply...
is there a way to export and import per-module for example Module | Type | Dependancies | Dependancies Imported By Other Dependancies ---------- | ------ | ------------ | ------------------------------------------- RingBuffer...
For example, in my `mylib` project I have header files in the ``` root/include ``` and I want when the ARR package is built the headers would go to ```...
Thank you for this great plugin. It took me a while to find it, and I was even considering writing something like this myself. This works perfectly, but I get...
I have a dummy application creating a native c/c++ aar I've followed the guidelins but ```` dependencies { classpath 'com.android.tools.build:gradle:3.0.0' //Add androidNativeBundle dependency classpath "io.github.howardpang:androidNativeBundle:1.1.3" } ```` `classpath ` isn't...