M-CAP7AIN
Member
Hi ,I need change this section of code before compiling , this section generated with IDE.
To
I think this section give current class package name , application package name for this section not true?.
Thanks.
B4X:
public static void initializeProcessGlobals() {
try {
Class.forName(BA.applicationContext.getPackageName() + ".main").getMethod("initializeProcessGlobals").invoke(null, null);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
To
B4X:
Class.forName("CLASS.NAME" + ".Main" ....
I think this section give current class package name , application package name for this section not true?.
Thanks.