Android compilation failed

I have update openFL to version 6.0.1 -> Lime to 5.3.0
I’m getting this error when compiling to android:
:app:compileReleaseJavaWithJavac - is not incremental (e.g. outputs have changed, no previous execution, etc.).
D:\TRABALHOS\nucleoTi\EscolaGames\games_openFL\classificacao_dos_animais\projeto\bin\android\bin\app\src\main\java\org\haxe\lime\GameActivity.java:79: error: method does not override or implement a method from a supertype
@Override
^
D:\TRABALHOS\nucleoTi\EscolaGames\games_openFL\classificacao_dos_animais\projeto\bin\android\bin\app\src\main\java\org\haxe\lime\GameActivity.java:92: error: cannot find symbol
super.onRequestPermissionsResult (requestCode, permissions, grantResults);
^
symbol: method onRequestPermissionsResult(int,String[],int[])
Note: D:\TRABALHOS\nucleoTi\EscolaGames\games_openFL\classificacao_dos_animais\projeto\bin\android\bin\app\src\main\java\org\libsdl\app\SDLActivity.java uses or overrides a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
2 errors
:app:compileReleaseJavaWithJavac FAILED

It compiles fine with openfl:4.9.1 -> lime:4.0.2

I have commented lines 76 to 91 in file: GameActivity.java (C:\HaxeToolkit\haxe\lib\lime\5,3,0\templates\android\template\app\src\main\java\org\haxe\lime) and it comiles fine:

// @Override
	// public void onRequestPermissionsResult(int requestCode, String permissions[], int[] grantResults) {

	// 	for (Extension extension : extensions) {

	// 		if (!extension.onRequestPermissionsResult (requestCode, permissions, grantResults)) {

	// 			return;

	// 		}

	// 	}

	// 	super.onRequestPermissionsResult (requestCode, permissions, grantResults);

	// }

Thanks! I’m sorry about the regression :frowning:

I think this will help, would you mind giving it a shot?

It works. Thanks for you great work.