-
-
Notifications
You must be signed in to change notification settings - Fork 6
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
When reinstalling, xmake rebuilds executable but it's not packaged #10
Comments
assembleDebug needs to be called, but installDebug does not call it. This should not be something that the xmake plugin does. |
This is weird, because if I If I change a log in my C++ file, then run |
Full log: |
assembleDebug can't be executed:
|
just java files are changed, it will be run. |
My Java class only loads library, everything my app does is in the .so. I don't know which task copies the .so to the .apk but this one needs to be run after xmake installed to make it up to date. |
assembleDebug will generate apk, so it need be rerun |
|
Xmake Version
2.7.6
Operating System Version and Architecture
Windows 11
Describe Bug
When running
gradlew installDebug
after a C++ change, xmake recompiles the .so binary but it doesn't get packaged, so the .apk contains the old code.with more logs:
Expected Behavior
That it assembles/packages everytime xmake produces a new build to update the .apk
Project Configuration
Here's my build.gradle:
The text was updated successfully, but these errors were encountered: