TacoTheDank / Scoop

[ADB/Root] Catches a stack trace when an app crashes unexpectedly.
Apache License 2.0
321 stars 24 forks source link

Switch to Intent getter instead of storing it in memory #40

Closed X1nto closed 3 years ago

X1nto commented 3 years ago

Looking over at Android docs and other resources (cough StackOverflow cough), they all spawn new Intent objects instead of storing them in memory. I guess it's easier to spawn new Intent instead of storing it in memory and then checking if it's initialized.

(also makes code a bit more readable IMO)

TacoTheDank commented 3 years ago

Hmm, makes sense I guess. Thanks!

Notes: Closes #27