Skip to content
This repository has been archived by the owner on Oct 16, 2023. It is now read-only.

Commit

Permalink
gradle build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yuliskov committed Aug 3, 2020
1 parent 1fdb2e3 commit 8112aa0
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion browser/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apply from: '../../SharedModules/constants.gradle'
apply from: gradle.ext.sharedModulesConstants
apply plugin: 'com.android.library'

android {
Expand Down
2 changes: 1 addition & 1 deletion common/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apply from: '../../SharedModules/constants.gradle'
apply from: gradle.ext.sharedModulesConstants
apply plugin: 'com.android.library'

android {
Expand Down
2 changes: 1 addition & 1 deletion exoplayer-extension-vp9/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apply from: '../../SharedModules/constants.gradle'
apply from: gradle.ext.sharedModulesConstants
apply plugin: 'com.android.library'

android {
Expand Down
2 changes: 1 addition & 1 deletion exoplayeractivity/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apply from: '../../SharedModules/constants.gradle'
apply from: gradle.ext.sharedModulesConstants
apply plugin: 'com.android.library'


Expand Down
2 changes: 2 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ def rootDir = settingsDir
gradle.ext.sharedModulesRoot = new File(rootDir, '../SharedModules').exists() ? new File(rootDir, '../SharedModules') : new File(rootDir, './SharedModules')
apply from: new File(gradle.ext.sharedModulesRoot, 'core_settings.gradle')

gradle.ext.sharedModulesConstants = new File(gradle.ext.sharedModulesRoot, 'constants.gradle')

// prepare to git submodule
gradle.ext.mediaServiceCoreRoot = new File(rootDir, '../MediaServiceCore').exists() ? new File(rootDir, '../MediaServiceCore') : new File(rootDir, './MediaServiceCore')
apply from: new File(gradle.ext.mediaServiceCoreRoot, 'core_settings.gradle')
Expand Down
2 changes: 1 addition & 1 deletion smartyoutubetv/build.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apply from: '../../SharedModules/constants.gradle'
apply from: gradle.ext.sharedModulesConstants
buildscript {
repositories {
jcenter()
Expand Down

2 comments on commit 8112aa0

@roblav96
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@yuliskov
Copy link
Owner Author

@yuliskov yuliskov commented on 8112aa0 Aug 6, 2020 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.