marqroldan / -research-React-Native

0 stars 0 forks source link

Incoming Call Screen #2

Open marqroldan opened 2 years ago

marqroldan commented 2 years ago

Discord

Discord on foreground - shows screen when being called Discord went to background - small notification at the top Discord on foreground then locked screen - doesn't turn on screen

Discord force exited- small notification at the top Discord force exited, locked screen - turns on screen and shows call

Obtained from the APK

        <activity
            android:name="com.discord.app.AppActivity$Call"
            android:excludeFromRecents="true"
            android:launchMode="2" />

        <activity
            android:name="com.discord.app.AppActivity$IncomingCall"
            android:excludeFromRecents="true"
            android:launchMode="2"
            android:showOnLockScreen="true"
            android:showWhenLocked="true"
            android:turnScreenOn="true" />

Related Links