Defold 1.5.0 has been released

Output with --verbose:

Generating report... 101% ...done!
Bundling...2023-09-04 23:17:32 INFO    Entering IOSBundler.bundleApplication() 
2023-09-04 23:17:32 INFO    Bundling to /Users/willem/dev/demonshand/client/build/default/Demon's Hand.app 
2023-09-04 23:17:32 INFO    Code signing enabled. 
Cannot read the array length because "b" is null
Cause: java.lang.NullPointerException: Cannot read the array length because "b" is null
2023-09-04 23:17:32 SEVERE  Cannot read the array length because "b" is null 

Here are the build options:

	$(JAVA_BIN) -jar bob.jar --archive \
		--liveupdate yes \
		--resource-cache-local $(BUILD_CACHE) \
		--settings $(AUX_PROJECT_FILE) \
		--build-report-html build-report.html \
		--texture-compression true \
	    --architectures arm64-ios \
	    --identity $(IOS_IDENTITY) \
	    --mobileprovisioning $(IOS_PROVISIONING_PROFILE) \
	    --platform arm64-ios \
		--verbose \
        --variant=debug \
	    resolve distclean build bundle  

I tried without --identity but get the same error

Generating report... 101% ...done!
Bundling...2023-09-04 23:18:39 INFO    Entering IOSBundler.bundleApplication() 
2023-09-04 23:18:39 INFO    Bundling to /Users/willem/dev/demonshand/client/build/default/Demon's Hand.app 
2023-09-04 23:18:39 INFO    Code signing disabled. 
Cannot read the array length because "b" is null
Cause: java.lang.NullPointerException: Cannot read the array length because "b" is null
2023-09-04 23:18:39 SEVERE  Cannot read the array length because "b" is null 

I haven’t tried other projects yet. I’ll give that a stab.