-
Notifications
You must be signed in to change notification settings - Fork 39
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
ef65e39
commit dbfd243
Showing
16 changed files
with
130 additions
and
207 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
13 changes: 13 additions & 0 deletions
13
Analytics/src/main/java/com/bitmovin/player/samples/analytics/App.java
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,13 @@ | ||
package com.bitmovin.player.samples.analytics; | ||
|
||
import android.app.Application; | ||
|
||
import com.bitmovin.player.api.DebugConfig; | ||
|
||
public class App extends Application { | ||
@Override | ||
public void onCreate() { | ||
// DebugConfig.setLoggingEnabled(true); // Enable verbose debug logging in case of issues | ||
super.onCreate(); | ||
} | ||
} |
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
11 changes: 11 additions & 0 deletions
11
AnalyticsKotlin/src/main/java/com/bitmovin/player/samples/analytics/App.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,11 @@ | ||
package com.bitmovin.player.samples.analytics | ||
|
||
import android.app.Application | ||
import com.bitmovin.player.api.DebugConfig | ||
|
||
class App : Application() { | ||
override fun onCreate() { | ||
// DebugConfig.isLoggingEnabled = true // Enable verbose debug logging in case of issues | ||
super.onCreate() | ||
} | ||
} |
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
11 changes: 11 additions & 0 deletions
11
BasicPlayback/src/main/java/com/bitmovin/player/samples/playback/basic/App.java
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,11 @@ | ||
package com.bitmovin.player.samples.playback.basic; | ||
|
||
import android.app.Application; | ||
|
||
public class App extends Application { | ||
@Override | ||
public void onCreate() { | ||
// DebugConfig.setLoggingEnabled(true); // Enable verbose debug logging in case of issues | ||
super.onCreate(); | ||
} | ||
} |
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
11 changes: 11 additions & 0 deletions
11
BasicPlaybackKotlin/src/main/java/com/bitmovin/player/samples/playback/basic/App.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,11 @@ | ||
package com.bitmovin.player.samples.playback.basic | ||
|
||
import android.app.Application | ||
import com.bitmovin.player.api.DebugConfig | ||
|
||
class App : Application() { | ||
override fun onCreate() { | ||
// DebugConfig.isLoggingEnabled = true // Enable verbose debug logging in case of issues | ||
super.onCreate() | ||
} | ||
} |
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
Oops, something went wrong.