Build 2020.3624 | Android - Crash on build

Hi everyone, I’m currently using build 2020.3624 (but actually I’m experiencing the same problem with earlier builds): basically, when trying to build for Android, I don’t get the popup asking how to name the .apk and the whole simulator crashes. The only thing I can do is to kill the simulator.

Here’s my build.settings file:

--
-- For more information on build.settings, see the Project Build Settings guide at:
-- https://docs.coronalabs.com/guide/distribution/buildSettings
--

settings =
{
orientation =
{
	-- Supported values for orientation:
	-- portrait, portraitUpsideDown, landscapeLeft, landscapeRight
	default = "portrait",
	supported = { "portrait", },
},

--
-- Android section
--
android =
{
	usesPermissions =
	{
		"android.permission.INTERNET",
	},
},

--
-- iOS section
--
iphone =
{
	xcassets = "Images.xcassets",
	plist =
	{
		UIStatusBarHidden = false,
		UILaunchStoryboardName = "LaunchScreen",
	},
},

--
-- Plugins section
--
plugins =
{

},

--
-- Project section
--
excludeFiles =
{
	-- Exclude unnecessary files for each platform
	all = { "Icon.png", "Icon-*dpi.png", "Images.xcassets", },
	android = { "LaunchScreen.storyboardc", },
},
}

Thanks in advance.