Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save moehandi/57716e5331cd8a1f75a6b0202e03d064 to your computer and use it in GitHub Desktop.

Select an option

Save moehandi/57716e5331cd8a1f75a6b0202e03d064 to your computer and use it in GitHub Desktop.
Gradle settings for Android jwplayer conflict with play-services-ads
compile ('com.longtailvideo.jwplayer:jwplayer-core:2.6.2+12'){
}
compile ('com.longtailvideo.jwplayer:jwplayer-common:2.6.2+12') {
exclude module: 'appcompat-v7'
}
compile ('com.longtailvideo.jwplayer:jwplayer-ima:2.6.2+12') {
exclude group: 'com.google.android.gms'
exclude module: 'play-services-ads'
}
compile ('com.longtailvideo.jwplayer:jwplayer-chromecast:2.6.2+12'){
exclude group: 'com.google.android.gms', module: 'play-services-ads'
exclude module: 'play-services-ads'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment