Skip to content

Commit

Permalink
Add EPICBOOM to list of untested speakers (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shingyx authored Sep 30, 2023
1 parent ffec446 commit e9c7ef9
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ Simply select your UE BOOM speaker from the list of paired Bluetooth devices and
<b>Unsupported speakers</b>
- WONDERBOOM / WONDERBOOM 2 / WONDERBOOM 3
- BLAST / MEGABLAST (unconfirmed)
- EPICBOOM (unconfirmed)
- HYPERBOOM (unconfirmed)

Please raise a GitHub issue or send an email if you experience any issues or can help confirm support for any of the speakers listed above. The list of supported and unsupported speakers will be updated as more information is obtained. Your speaker may require a firmware update to work with this app.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,9 @@ class HelpActivity : AppCompatActivity() {
SpeakerModel.WONDERBOOM -> {
R.string.help_text_not_supported_wonderboom
}
SpeakerModel.EPICBOOM,
SpeakerModel.HYPERBOOM -> {
R.string.help_text_not_supported_hyperboom
R.string.help_text_not_supported_other_boom
}
SpeakerModel.BLAST,
SpeakerModel.MEGABLAST -> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ enum class SpeakerModel(@StringRes val modelStringResId: Int) {
WONDERBOOM_3(R.string.speaker_wonderboom_3),
WONDERBOOM_2(R.string.speaker_wonderboom_2),
WONDERBOOM(R.string.speaker_wonderboom),
EPICBOOM(R.string.speaker_epicboom),
HYPERBOOM(R.string.speaker_hyperboom),
BLAST(R.string.speaker_blast),
MEGABLAST(R.string.speaker_megablast),
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@
<string name="speaker_wonderboom">WONDERBOOM</string>
<string name="speaker_wonderboom_2">WONDERBOOM 2</string>
<string name="speaker_wonderboom_3">WONDERBOOM 3</string>
<string name="speaker_epicboom">EPICBOOM</string>
<string name="speaker_hyperboom">HYPERBOOM</string>
<string name="speaker_blast">BLAST</string>
<string name="speaker_megablast">MEGABLAST</string>
Expand All @@ -55,7 +56,7 @@
<string name="help_intro">Having trouble connecting? Please select the model of your speaker below.</string>
<string name="help_text_supported">%1$s is supported by this app, but you may need to first update the speaker\'s firmware using the official BOOM app. If your speaker isn\'t supported by the official BOOM app, then it won\'t be supported by BOOM Switch either. This app only supports speakers made by the Ultimate Ears brand.\n\nGet the official BOOM app here: https://play.google.com/store/apps/details?id=com.logitech.ueboom\n\nIf you\'re still experiencing connectivity issues after updating the speaker\'s firmware, try uninstalling the official BOOM app then restarting your Android device.</string>
<string name="help_text_not_supported_wonderboom">%1$s is not supported by this app, because the WONDERBOOM speakers do not support remote power. There is no app for the WONDERBOOM range of speakers.</string>
<string name="help_text_not_supported_hyperboom">%1$s has not been tested with this app, so support is unknown. Please use the official BOOM app if you\'re experiencing any issues.\n\nGet the official BOOM app here: https://play.google.com/store/apps/details?id=com.logitech.ueboom</string>
<string name="help_text_not_supported_other_boom">%1$s has not been tested with this app, so support is unknown. Please use the official BOOM app if you\'re experiencing any issues.\n\nGet the official BOOM app here: https://play.google.com/store/apps/details?id=com.logitech.ueboom</string>
<string name="help_text_not_supported_blast">%1$s has not been tested with this app, so support is unknown. Please use the official BLAST app if you\'re experiencing any issues.\n\nGet the official BLAST app here: https://play.google.com/store/apps/details?id=com.logitech.newjackcity</string>
<string name="help_text_not_supported_roll">%1$s has not been tested with this app, so support is unknown. Please use the official ROLL app if you\'re experiencing any issues.\n\nGet the official ROLL app here: https://play.google.com/store/apps/details?id=com.logitech.ueroll</string>
<string name="help_text_not_supported_non_ue">Your speaker is not supported by this app. BOOM Switch only supports a select range of speakers made by the Ultimate Ears brand. If your speaker is not on the list above, then your speaker is not an Ultimate Ears speaker.</string>
Expand Down

0 comments on commit e9c7ef9

Please sign in to comment.