Skip to content

Commit

Permalink
Update comment (mark as deprecated)
Browse files Browse the repository at this point in the history
  • Loading branch information
testcenter committed Aug 28, 2024
1 parent 6cc1450 commit 19ad7c3
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -300,9 +300,9 @@ public void resumeTracking() {

/**
* This should be called when the app is resumed.
* <p>
* NOTE: This method must not be called, when the analytics is created via `ConvivaAnalytics.buildVideoAnalytics` or `ConvivaAnalytics.buildAdAnalytics` as this is handled internally already!
* @deprecated There is no need to call this function. This is handled in the conviva-core sdk internally.
*/
@Deprecated
public void reportAppForegrounded() {
Log.d(TAG, "appForegrounded");
if (isBackgrounded) {
Expand All @@ -313,9 +313,9 @@ public void reportAppForegrounded() {

/**
* This should be called when the app is paused
* <p>
* NOTE: This method must not be called, when the analytics is created via `ConvivaAnalytics.buildVideoAnalytics` or `ConvivaAnalytics.buildAdAnalytics` as this is handled internally already!
* @deprecated There is no need to call this function. This is handled in the conviva-core sdk internally.
*/
@Deprecated
public void reportAppBackgrounded() {
Log.d(TAG, "appBackgrounded");
if (!isBackgrounded) {
Expand Down

0 comments on commit 19ad7c3

Please sign in to comment.