|
43 | 43 |
|
44 | 44 | Here is an example of lint warnings produced by this check:
|
45 | 45 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~text
|
46 |
| -build.gradle:7:Warning: A newer version of |
47 |
| -com.android.tools.build:gradle than 3.4.0-alpha3 is available: 3.5.0 |
| 46 | +../gradle/libs.versions.toml:8:Warning: A newer version of |
| 47 | +com.android.application than 8.0.0 is available: 8.0.2 |
48 | 48 | [AndroidGradlePluginVersion]
|
49 |
| - |
50 |
| - classpath 'com.android.tools.build:gradle:3.4.0-alpha3' |
51 |
| - --------------------------------------------- |
| 49 | +gradlePlugins-agp = "8.0.0" |
| 50 | + ------- |
| 51 | +../gradle/libs.versions.toml:9:Warning: A newer version of |
| 52 | +com.android.application than 8.1.0-alpha01 is available: 8.1.0-rc01 |
| 53 | +[AndroidGradlePluginVersion] |
| 54 | +gradlePlugins-agp-alpha = "8.1.0-alpha01" |
| 55 | + --------------- |
52 | 56 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
53 | 57 |
|
54 | 58 | Here is the source file referenced above:
|
55 | 59 |
|
56 |
| -`build.gradle`: |
57 |
| -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~groovy linenumbers |
58 |
| -buildscript { |
59 |
| - repositories { |
60 |
| - google() |
61 |
| - jcenter() |
62 |
| - } |
63 |
| - dependencies { |
64 |
| - classpath 'com.android.tools.build:gradle:3.4.0-alpha3' |
65 |
| - } |
66 |
| -} |
67 |
| -dependencies { |
68 |
| - compile 'org.apache.httpcomponents:httpcomponents-core:4.2' |
69 |
| - compile 'com.android.support:recyclerview-v7:25.0.0' |
70 |
| - compile 'com.google.firebase:firebase-messaging:10.2.1' |
71 |
| -} |
| 60 | +`../gradle/libs.versions.toml`: |
| 61 | +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~toml linenumbers |
| 62 | +[versions] |
| 63 | +guavaVersion = "11.0.2" |
| 64 | +appCompatVersion="13.0.0" |
| 65 | +wearableVersion=" 1.2.0 " |
| 66 | +# Test comment suppression: |
| 67 | +#noinspection GradleDependency |
| 68 | +multi-dex="1.0.0" |
| 69 | +gradlePlugins-agp = "8.0.0" |
| 70 | +gradlePlugins-agp-alpha = "8.1.0-alpha01" |
| 71 | +gradlePlugins-agp-dev = "8.2.0-dev" |
| 72 | +gradlePlugins-crashlytics = "2.9.2" |
| 73 | +gradlePlugins-dependency-analysis = "1.0.0" |
| 74 | + |
| 75 | +[libraries] |
| 76 | +com-google-guava = { module = "com.google.guava:guava", version.ref = "guavaVersion"} |
| 77 | +appcompat = { module = "com.android.support:appcompat-v7", version.ref = "appCompatVersion" } |
| 78 | +wearable-support = { group = " com.google.android.support ", name =" wearable ", version.ref = " wearableVersion " } |
| 79 | +multidex-lib = { module = "com.android.support:multidex", version.ref = "multi-dex" } |
| 80 | + |
| 81 | +[bundles] |
| 82 | +misc = [ |
| 83 | + "com-google-guava", |
| 84 | + "appcompat", |
| 85 | +] |
| 86 | + |
| 87 | +[plugins] |
| 88 | +android-application = { id = "com.android.application", version.ref = "gradlePlugins-agp" } |
| 89 | +android-application2 = { id = "com.android.application", version.ref = "gradlePlugins-agp-alpha" } |
| 90 | +android-application3 = { id = "com.android.application", version.ref = "gradlePlugins-agp-dev" } |
| 91 | +crashlytics = { id = "com.google.firebase.crashlytics", version.ref = "gradlePlugins-crashlytics" } |
| 92 | +dependency-analysis = { id = "com.autonomousapps.dependency-analysis", version.ref = "gradlePlugins-dependency-analysis" } |
72 | 93 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
73 | 94 |
|
74 | 95 | You can also visit the
|
75 | 96 | [source code](https://cs.android.com/android-studio/platform/tools/base/+/mirror-goog-studio-main:lint/libs/lint-tests/src/test/java/com/android/tools/lint/checks/GradleDetectorTest.kt)
|
76 | 97 | for the unit tests for this check to see additional scenarios.
|
77 | 98 |
|
78 | 99 | The above example was automatically extracted from the first unit test
|
79 |
| -found for this lint check, `GradleDetector.testVersionsFromGradleCache`. |
| 100 | +found for this lint check, `GradleDetector.testTomlVersionCatalogFile`. |
80 | 101 | To report a problem with this extracted sample, visit
|
81 | 102 | https://issuetracker.google.com/issues/new?component=192708.
|
82 | 103 |
|
|
0 commit comments