What is way to obtain global info from "project.godot" in my android plugin .aar in godot 3.2.2+

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By Mostafa Karamizade

I’m trying to create an android plugin in Godot 3.2.2(creating an .aar plugin) and need to read some config info from "project.godot" in init function of plugin.
I’m trying to get that info using GodotLib.getGlobal("category/key") but exported apk fails to start and causes App crash.
what is the best way to get info from "project.godot" in.aar plugin?

:bust_in_silhouette: Reply From: Mostafa Karamizade

I solved the problem that was an incompability between godot Kotlin version and some libs of my plugin. Just change kotlinVersion in
config.gradle file in android/build directory of my project from 1.3.* to 1.4.0 and now GodotLib.getGlobal("category/key") works pretty well.