Browse Source

gradle: set the buildConfig with =

The old way is marked as deprecated.

> Properties should be assigned using the 'propName = value' syntax. Setting a
> property via the Gradle-generated 'propName value' or 'propName(value)'
> syntax in Groovy DSL has been deprecated.
merge-requests/2174/merge
Steve Lhomme 1 year ago
committed by Duncan McNamara
parent
commit
befe198b16
  1. 2
      application/donations/build.gradle
  2. 2
      application/live-plot-graph/build.gradle
  3. 2
      application/moviepedia/build.gradle
  4. 2
      application/remote-access-server/build.gradle
  5. 2
      application/resources/build.gradle
  6. 2
      application/tools/build.gradle
  7. 2
      application/vlc-android/build.gradle

2
application/donations/build.gradle

@ -71,7 +71,7 @@ android {
namespace = 'org.videolan.vlc.donations' namespace = 'org.videolan.vlc.donations'
buildFeatures { buildFeatures {
aidl true aidl true
buildConfig true buildConfig = true
} }
} }

2
application/live-plot-graph/build.gradle

@ -51,7 +51,7 @@ android {
} }
namespace = 'org.videolan.liveplotgraph' namespace = 'org.videolan.liveplotgraph'
buildFeatures { buildFeatures {
buildConfig true buildConfig = true
} }
} }

2
application/moviepedia/build.gradle

@ -50,7 +50,7 @@ android {
} }
namespace = 'org.videolan.moviepedia' namespace = 'org.videolan.moviepedia'
buildFeatures { buildFeatures {
buildConfig true buildConfig = true
} }
} }

2
application/remote-access-server/build.gradle

@ -55,7 +55,7 @@ android {
jvmTarget = '1.8' jvmTarget = '1.8'
} }
buildFeatures { buildFeatures {
buildConfig true buildConfig = true
} }
} }

2
application/resources/build.gradle

@ -54,7 +54,7 @@ android {
} }
namespace = 'org.videolan.resources' namespace = 'org.videolan.resources'
buildFeatures { buildFeatures {
buildConfig true buildConfig = true
} }
} }

2
application/tools/build.gradle

@ -27,7 +27,7 @@ android {
} }
namespace = 'videolan.org.commontools' namespace = 'videolan.org.commontools'
buildFeatures { buildFeatures {
buildConfig true buildConfig = true
} }
} }

2
application/vlc-android/build.gradle

@ -122,7 +122,7 @@ android {
buildFeatures { buildFeatures {
renderScript true renderScript true
aidl true aidl true
buildConfig true buildConfig = true
} }
} }

Loading…
Cancel
Save