Godot console error:
Attempting to parent and popup a dialog that already has a parent.
0 param: –xr_mode_regular
1 param: –use_immersive
editor/export/editor_export_platform.h:182 – Export: Unable to copy and rename export file:
Configure project :
WARNING: The option setting ‘android.overridePathCheck=true’ is experimental.
The current default is ‘false’.
Task :copyAndRenameReleaseAab FAILED
FAILURE: Build failed with an exception.
- What went wrong:
Execution failed for task ‘:copyAndRenameReleaseAab’.
Cannot access a file in the destination directory. Copying to a directory which contains unreadable content is not supported. Declare the task as untracked by using Task.doNotTrackState(). For more information, please refer to https://docs.gradle.org/8.2/userguide/incremental_build.html#disable-state-tracking in the Gradle documentation.
> Failed to create MD5 hash for file content.
- Try:
Run with –stacktrace option to get the stack trace.
Run with –info or –debug option to get more log output.
Run with –scan to get full insights.
Get more help at https://help.gradle.org.
BUILD FAILED in 11s
1 actionable task: 1 executed
(godot v4.2.2-stable)
I tried:
Run with –stacktrace option to get the stack trace.
Run with –info or –debug option to get more log output.
Run with –scan to get full insights.
also i tried:
to create new functions in build.grendle such as:
task copyAndRenameReleaseAab(type: Copy) {
from ‘build/outputs/bundle/release’
into ‘desired/output/directory’
doNotTrackState()
eachFile { FileCopyDetails details ->
details.path = details.path.replace(‘release.aab’, ‘newname.aab’)
}
}
also tried in config.grandle to set other version than “8.2.0-default on my pc” such as “8.5.0” and “8.2.x” in:
ext.versions = [
androidGradlePlugin: ‘8.2.0’,
…
and i checked grandle documentation but didn’t find useful i’m not java dev i just have to set my godot to export to android specific .AAB file format… for exporting godot project to google play console…
I can’t fix thi bug for three whole days, i am out of ideas at all…
DR97 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.