Does this lib work with onNewIntent()?
Roman Bielokon
1

Hi Roman,

Yes, it does. There is only one thing to take into account:

Dart.inject(Activity activity) uses getIntent() internally. However, getIntent() still returns the original intent. So, you will need to use a different method:

That way the new Intent will be used to inject the extras :)