Skip to content

Commit

Permalink
Merge pull request #252 from heremaps/esd/41450
Browse files Browse the repository at this point in the history
Update example apps for release 4.14.5.0
  • Loading branch information
maharudraabhishek authored Jun 28, 2023
2 parents e03c815 + ea0e66f commit 8a282f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ For an overview of the existing features, please check the _Developer's Guide_ f

> For now, the _Navigate Edition_ is only available upon request. Please contact your HERE representative to receive access including a set of evaluation credentials.
## List of Available Example Apps (Version 4.14.4.0)
## List of Available Example Apps (Version 4.14.5.0)

- **HelloMap**: Shows the classic 'Hello World'.
- **HelloMapKotlin**: Shows the classic 'Hello World' using Kotlin language (Android only).
Expand Down
2 changes: 1 addition & 1 deletion examples/latest/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
This folder contains the HERE SDK examples apps for version: 4.14.4.0
This folder contains the HERE SDK examples apps for version: 4.14.5.0

- HERE SDK for Android ([Lite Edition](lite/android/), [Explore Edition](explore/android/), [Navigate Edition](navigate/android/))
- HERE SDK for iOS ([Lite Edition](lite/ios/), [Explore Edition](explore/ios/), [Navigate Edition](navigate/ios/))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public void initMediaPlayer() {

// Set the volume of each of MediaPlayer's audio channels
public void setVolumeMediaPlayer(float leftChannelGains, float rightChannelGains) {
if (mediaPlayer != null) {
if (mediaPlayer == null) {
Log.d(AudioPlayerManager.class.getSimpleName(), "Cannot set volume. Player is null.");
return;
}
Expand Down

0 comments on commit 8a282f3

Please sign in to comment.