Posted: 15th Oct 2021 0:22
I still can't get this to export to AAB. I downloaded the 10-11-2021a version.I have updated JDK and made sure my paths were correct.

I'm using Tier 1. I can export to APK but it fails for AAB. I get a message box saying "Failed to sign APK, is your keystore password correct." I try to generate a new key and program fails again. I had to roll back to a previous version to generate the key in order to make an APK file. Program fails and exits when trying to read the key for AAB files
Posted: 15th Oct 2021 9:14
@Orvillian, I can't broadcast with this new release of Classic. The data transfers OK but the the app quits/crashes with no error. Studio works OK with the new player. Can you please fix this ASAP as I don't want to wait 3 months for a fix as this is a show stopper for me.
Posted: 16th Oct 2021 3:25
Again, the file in question is 'AGKCompiler.exe'
sorry about that. i was looking at the IDE signature


@zaxxan,

since you have studio, i've sideloaded the player that ships with it (09/30/21) onto my android phone and it appears to be broadcasting fine from classic (and studio).
Posted: 16th Oct 2021 12:20
Will Tier2 receive the updates?
Posted: 16th Oct 2021 20:28
@Virtual Nomad, I have a test version of AGKBroadcaster which works with the playstore version of AGKplayer and now and have the player working with the Classic vetsion

For some reason the AGKplayers that are part of the AppGameKit installation will not install on my phone even though I have 'install from unknown source' selected.
Posted: 20th Oct 2021 2:12
Added a new find feature for unsorted arrays called IndexOf


Are you able to provide some detail on this? Thanks!
Posted: 20th Oct 2021 2:36
.IndexOf() was added in Studio's V2021.09.20
n example of it use would be: index = array.IndexOf ( 123 ) ? so index will be assigned the index of the array if it can find the value 123, otherwise it will be -1

aka:

Syntax:
index = MyArray.IndexOf ( Value )

Result:
if Value found, will return first Index of MyArray containing Value, else returns -1

it's obviously slower than sorted arrays and .Find()

and, both could use expanded functionality.

otherwise, i haven't seen any test results of .IndexOf vs something like:
+ Code Snippet
Function Find(This)
	Result = -1
	For ThisIndex = 0 to MyArray.Length
		If MyArray[ThisIndex] = This then ExitFunction ThisIndex
	Next x
EndFunction Result
Posted: 20th Oct 2021 8:59
Hi. I am also having trouble with the player on android. The player just crashes out after loading my app.
Also Java installed and variables specified.
Posted: 20th Oct 2021 12:51
MM, is that crashing under the 2021.10.19 player found on your HD @ ...\App Game Kit 2\Players\Android?

otherwise, making sure that you've updated Classic to 2021.10.19 where this thread is re: the previous version (2021.10.11).