Check proj.android/build_native.sh , every time you run the build, all resource information / * will be recreated, and thus your chmod will be invalidated.
You can chmod after the process of copying build_native.sh , put chmod somewhere after the cp assets/*
in my case, put
chmod 777 -R "$APP_ANDROID_ROOT"/assets
after copying the resource folder to build_native.sh as follows:
if [ -f "$file" ]; then cp "$file" "$APP_ANDROID_ROOT"/assets fi chmod 777 -R "$APP_ANDROID_ROOT"/assets done
source share