Thursday, January 26, 2017

[WARN] Namespace option is not compatible with CodeSplitter, turning it off.

Hi,

I have just migrated my application from gwt-2.7.0 to gwt-2.8.0

After the upgrade, on gwt:compile I get the following warning message:
[WARN] Namespace option is not compatible with CodeSplitter, turning it off.

I am properly using code splitting:

/*
 * Code Splitting - this is the initial split point/fragment
 */

 GWT
.runAsync(AppController.class, new RunAsyncCallback() {


 
@Override
 
public void onSuccess() {
 
new AppController().initialize(RootLayoutPanel.get());
 
}

 
@Override
 
public void onFailure(Throwable reason) {
 
ClientLoggingUtils.logException(reason, true);
 
}
 
});
 
}

<!-- Code Splitting - configure initial fragments load sequence to decrease
 load time; but be careful because if the fragments are loaded in an order
 different than the one you specified it will cause your loading time to increase -->

<extend-configuration-property name="compiler.splitpoint.initial.sequence" value="z.y.x.AppController" />

Am I missing something?

Thank you,
Bogdan.

--
You received this message because you are subscribed to the Google Groups "GWT Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-web-toolkit+unsubscribe@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at https://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment