-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
716e5b7
commit 7f8d105
Showing
8 changed files
with
88 additions
and
87 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 0 additions & 16 deletions
16
...tures/src/main/kotlin/io/embrace/android/embracesdk/internal/capture/activity/OpenType.kt
This file was deleted.
Oops, something went wrong.
13 changes: 7 additions & 6 deletions
13
...k/internal/capture/activity/OpenEvents.kt → ...internal/capture/activity/UiLoadEvents.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
...res/src/main/kotlin/io/embrace/android/embracesdk/internal/capture/activity/UiLoadType.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package io.embrace.android.embracesdk.internal.capture.activity | ||
|
||
/** | ||
* The type of UI load being traced | ||
*/ | ||
enum class UiLoadType(val typeName: String) { | ||
/** | ||
* Load where the Activity instance has to be created | ||
*/ | ||
COLD("cold"), | ||
|
||
/** | ||
* Load where the instance has already been created and just needs to be started and resumed (e.g. foregrounding) | ||
*/ | ||
HOT("hot") | ||
} |
Oops, something went wrong.