Ivan
Ivan
Use simple variables in repeat collection to avoid this problem, because `scope[repeatCollection.replace('::', '')]` doesn't work properly bad - `dm.slides` ``` {{ slide.id }} ``` good - `slides` ``` {{ slide.id...
@jreij In this case, everything works as expected. 
Yes, I have `android:launchMode="singleTask"` in the manifest file. But it should be `singleTask` as it is React Native app. If I put another value (for example `singleTop`) it fixes the...
Sure, Here is `MainActivity.java` ```java package com.testpay; import android.content.Intent; import android.os.Bundle; import android.util.Log; import com.facebook.react.ReactActivity; public class MainActivity extends ReactActivity { @Override protected String getMainComponentName() { return "MyApp"; } @Override...
Thanks for the clarification. So, there is no way to fix this behaviour on ReactNative app, as RN requires `launchMode:singleTask`, right? As I understand, this behaviour can be avoided by...