Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/upgrade to support newest possible version of GMA SDK #23

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
6 changes: 3 additions & 3 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ def safeExtGet(prop, fallback) {
}

android {
compileSdkVersion safeExtGet('BrightcoveImaPlayer_compileSdkVersion', 29)
compileSdkVersion safeExtGet('BrightcoveImaPlayer_compileSdkVersion', 33)
defaultConfig {
minSdkVersion safeExtGet('BrightcoveImaPlayer_minSdkVersion', 19)
targetSdkVersion safeExtGet('BrightcoveImaPlayer_targetSdkVersion', 29)
minSdkVersion safeExtGet('BrightcoveImaPlayer_minSdkVersion', 24)
targetSdkVersion safeExtGet('BrightcoveImaPlayer_targetSdkVersion', 33)
versionCode 1
versionName "1.0"

Expand Down
2 changes: 1 addition & 1 deletion android/constants.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project.ext {
BRIGHTCOVE_VERSION = '6.18.6'
PLAY_SERVICES_VERSION = '20.3.0'
PLAY_SERVICES_VERSION = '22.4.0'
GOOGLE_IMA_SDK_VERSION = '3.21.1'
ANDROIDX_LEGACY_SUPPORT_V4 = '1.0.0'
ANDROIDX_MEDIA = '1.1.0'
Expand Down
Loading