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'
buildFeatures {
aidl true
buildConfig true
buildConfig = true
}
}

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

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

2
application/moviepedia/build.gradle

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

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

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

2
application/resources/build.gradle

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

2
application/tools/build.gradle

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

2
application/vlc-android/build.gradle

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

Loading…
Cancel
Save