File tree Expand file tree Collapse file tree 8 files changed +17
-12
lines changed
buildSrc/src/main/kotlin/com/datadog/gradle/config Expand file tree Collapse file tree 8 files changed +17
-12
lines changed Original file line number Diff line number Diff line change 4949 - name : Setup Gradle
5050 uses : gradle/actions/setup-gradle@d9c87d481d55275bb5441eef3fe0e46805f9ef70 # v3.5.0
5151 with :
52- gradle-version : 8.11.1
52+ gradle-version : 8.14.3
5353
5454 # Manually build the java bytecode
5555 - name : Execute Gradle build
Original file line number Diff line number Diff line change 11variables :
2- CURRENT_CI_IMAGE : " 22 "
2+ CURRENT_CI_IMAGE : " 23 "
33 CI_IMAGE_DOCKER : registry.ddbuild.io/ci/dd-sdk-android:$CURRENT_CI_IMAGE
44 GIT_DEPTH : 5
55
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ nexusPublishing {
6464 }
6565}
6666
67- task <Delete >(" clean" ) {
67+ tasks.register <Delete >(" clean" ) {
6868 delete(rootProject.layout.buildDirectory)
6969}
7070
Original file line number Diff line number Diff line change @@ -70,11 +70,16 @@ fun Project.androidLibraryConfig() {
7070 checkReleaseBuilds = false
7171 checkGeneratedSources = true
7272 ignoreTestSources = true
73- disable.addAll(
74- listOf (
75- " UseKtx" // https://googlesamples.github.io/android-custom-lint-rules/checks/UseKtx.md.html
76- )
73+ val disabledChecks = listOf (
74+ // https://googlesamples.github.io/android-custom-lint-rules/checks/AndroidGradlePluginVersion.md.html
75+ " AndroidGradlePluginVersion" ,
76+ // https://googlesamples.github.io/android-custom-lint-rules/checks/GradleDependency.md.html
77+ " GradleDependency" ,
78+ // https://googlesamples.github.io/android-custom-lint-rules/checks/Aligned16KB.md.html
79+ " Aligned16KB" ,
80+ " UseKtx" // https://googlesamples.github.io/android-custom-lint-rules/checks/UseKtx.md.html
7781 )
82+ disable.addAll(disabledChecks)
7883 }
7984
8085 packaging {
Original file line number Diff line number Diff line change @@ -26,10 +26,10 @@ RUN set -x \
2626 && apt-get -y clean \
2727 && rm -rf /var/lib/apt/lists/*
2828
29- ENV GRADLE_VERSION 8.11.1
29+ ENV GRADLE_VERSION 8.14.3
3030ENV ANDROID_COMPILE_SDK 36
3131ENV ANDROID_BUILD_TOOLS 36.0.0
32- ENV ANDROID_SDK_TOOLS 11076708
32+ ENV ANDROID_SDK_TOOLS 13114758
3333ENV NDK_VERSION 28.0.13004108
3434ENV CMAKE_VERSION 3.22.1
3535ENV DD_TRACER_VERSION 1.54.0
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ okHttp = "4.12.0"
1313# Android
1414adapterDelegates = " 4.3.2"
1515androidDesugaringSdk = " 2.0.4"
16- androidToolsPlugin = " 8.9.1 "
16+ androidToolsPlugin = " 8.13.2 "
1717androidXAnnotations = " 1.9.1"
1818androidXAppCompat = " 1.4.2" # Next version will bring coroutines
1919androidXCar = " 1.4.0"
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-8.11.1 -all.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.14.3 -all.zip
44networkTimeout =10000
55validateDistributionUrl =true
66zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ androidx.core:core-ktx:1.12.0 : 169 Kb
3838androidx.core:core:1.12.0 : 1291 Kb
3939androidx.cursoradapter:cursoradapter:1.0.0 : 10 Kb
4040androidx.customview:customview:1.1.0 : 32 Kb
41- androidx.databinding:viewbinding:8.9.1 : 1860 b
41+ androidx.databinding:viewbinding:8.13.2 : 1860 b
4242androidx.documentfile:documentfile:1.0.0 : 10 Kb
4343androidx.drawerlayout:drawerlayout:1.0.0 : 31 Kb
4444androidx.dynamicanimation:dynamicanimation:1.0.0 : 31 Kb
You can’t perform that action at this time.
0 commit comments