Browse Source

Migrate BuildConfig to gradle files

merge-requests/1990/head
Nicolas Pomepuy 2 years ago
parent
commit
6a9526a133
  1. 1
      application/donations/build.gradle
  2. 3
      application/live-plot-graph/build.gradle
  3. 3
      application/moviepedia/build.gradle
  4. 3
      application/resources/build.gradle
  5. 3
      application/tools/build.gradle
  6. 1
      application/vlc-android/build.gradle
  7. 3
      application/webserver/build.gradle
  8. 4
      buildsystem/compile.sh
  9. 1
      gradle.properties

1
application/donations/build.gradle

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

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

@ -43,6 +43,9 @@ android {
}
}
namespace 'org.videolan.liveplotgraph'
buildFeatures {
buildConfig true
}
}

3
application/moviepedia/build.gradle

@ -41,6 +41,9 @@ android {
}
}
namespace 'org.videolan.moviepedia'
buildFeatures {
buildConfig true
}
}

3
application/resources/build.gradle

@ -44,6 +44,9 @@ android {
res.srcDirs = ['flavors/debug/res']
}
namespace 'org.videolan.resources'
buildFeatures {
buildConfig true
}
}
dependencies {

3
application/tools/build.gradle

@ -19,6 +19,9 @@ android {
}
}
namespace 'videolan.org.commontools'
buildFeatures {
buildConfig true
}
}
dependencies {

1
application/vlc-android/build.gradle

@ -113,6 +113,7 @@ android {
buildFeatures {
renderScript true
aidl true
buildConfig true
}
}

3
application/webserver/build.gradle

@ -54,6 +54,9 @@ android {
kotlinOptions {
jvmTarget = '1.8'
}
buildFeatures {
buildConfig true
}
}
preBuild.dependsOn(webCopy)

4
buildsystem/compile.sh

@ -261,9 +261,9 @@ fi
if [ "$FORCE_VLC_4" = 1 ]; then
LIBVLCJNI_TESTED_HASH=e7d9bf62834c36c92a3724f895dce45362aceb49
LIBVLCJNI_TESTED_HASH=6337b790b501a9c132fdc7ec1a0c04313738cd96
else
LIBVLCJNI_TESTED_HASH=13d22717b6af57fe1e4fe43e2250c30cffd77e3d
LIBVLCJNI_TESTED_HASH=24c0047f5697cc96e89ac86e2557ce319fc43c86
fi
LIBVLCJNI_REPOSITORY=https://code.videolan.org/videolan/libvlcjni

1
gradle.properties

@ -21,7 +21,6 @@ POM_DEVELOPER_NAME=VideoLAN
POM_DEVELOPER_URL=https://www.videolan.org/
RELEASE_SIGNING_ENABLED=false
android.defaults.buildfeatures.buildconfig=true
android.nonTransitiveRClass=false
android.nonFinalResIds=false

Loading…
Cancel
Save