Closed websystemtechnology closed 3 months ago
As mentioned in the log:
[Wed Jul 31 11:06:48 UTC 2024][INFO] Logging process [package-task] to file:
/root/workspace/apk_gfx_fumarolo/gfx_app_fumarolo/build/gluonfx/log/process-package-task-1722424008091.log
the full package process is logged into build/gluonfx/log/process-package-task-1722424008091.log
Please check that log, and see if you can fix it, or post that log otherwise.
attached is the process-package-task.log and build.gradle: process-package-task-log.txt build_gradle.txt
The files explain the issue:
Your build file has:
android {
namespace '.gfx_app_NAMEAPP'
...
and that can't be used as a valid namespace:
Namespace '.gfx_app_NAMEAPP' is not a valid Java package name as '' is not a valid Java identifier.
Namespaces follow the Java package conventions, so you need to set something like 'com.mycompany.your_app_name'
.
You can use appIdentifier
in the gluonfx
block of your build gradle to set that value.
Thanks, I added appIdentifier in the gluonfx block and it works
while running the nativePackage I get this error. I am using 1.0.23 as gluon plugin version and 4.0.21 as gluon attach version
What should be done?