Giter Club home page Giter Club logo

Comments (1)

adam1929 avatar adam1929 commented on August 19, 2024

Hi @kostyanchikoff thank you for reporting. I assume that you are using Exponea.handleRemoteMessage while receiving PushNotification. All is handled by SDK.
As you can see in this github code, SDK is preparing Notification for system and then system handles Application and Activity lifecycle itself. So if you click on Notification (or action) then system will opens your Activity according your AndroidManifest.xml configuration and rules defined by Google.
Our documentation is mentioning onNewIntent as warning for cases, that you defines Activity to be able to handle deeplinks/universalLinks and it has to be updated rather than newly created.
In this case (Activity should be updated rather than re-created), you first click will trigger onCreate() method in activity; then second click (and activity is still existing) will trigger onNewIntent().
In case that your activity is configured to re-create always (for example using 'android:launchMode="singleTask"') then your first and second click will trigger onCreate() method in activity !!! but keep in mind that second click results of killing first instance of Activity and creating a new instance of activity. So any private field, runtime state or anything is going to be removed as well.
There is comprehensive configuration doc about Activity lifecycle with multiple ways to achieve your goals

from exponea-android-sdk.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.