Skip to content

Commit c09d6de

Browse files
authored
Merge pull request #97 from googlesamples/updatedocs
Update documentation snapshot.
2 parents 0b46251 + bd5af9f commit c09d6de

File tree

385 files changed

+4392
-776
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

385 files changed

+4392
-776
lines changed

CONTRIBUTING.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# How to become a contributor and submit your own code
22

3+
## Documentation
4+
5+
Note the all the documentation under docs/ is only a mirror;
6+
the original documentation is maintained in the Android
7+
source code repository:
8+
9+
https://cs.android.com/android-studio/platform/tools/base/+/mirror-goog-studio-main:lint/docs/
10+
311
## Contributor License Agreements
412

513
We'd love to accept your sample apps and patches! Before we can take them, we

docs/checks/AlertDialogUsage.md.html

+4
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,10 @@
8989
[versions]
9090
lint-rules-android = "0.25.0"
9191
[libraries]
92+
# For clarity and text wrapping purposes the following declaration is
93+
# shown split up across lines, but in TOML it needs to be on a single
94+
# line (see https://github.com/toml-lang/toml/issues/516) so adjust
95+
# when pasting into libs.versions.toml:
9296
lint-rules-android = {
9397
module = "com.vanniktech:lint-rules-android",
9498
version.ref = "lint-rules-android"

docs/checks/AppLinkUrlError.md.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
package="test.pkg" >
5959

6060
<application>
61-
<activity>
61+
<activity android:name=".MainActivity">
6262
<intent-filter android:autoVerify="true">
6363
<action android:name="android.intent.action.VIEW" />
6464
<category android:name="android.intent.category.DEFAULT" />

docs/checks/ArcAnimationSpecTypeIssue.md.html

+9-5
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
Feedback
2222
: https://issuetracker.google.com/issues/new?component=612128
2323
Min
24-
: Lint 7.0
24+
: Lint 8.0 and 8.1
2525
Compiled
2626
: Lint 8.0 and 8.1
2727
Artifact
@@ -99,25 +99,29 @@
9999

100100
```
101101
// build.gradle.kts
102-
implementation("androidx.compose.animation:animation-core-android:1.7.0-rc01")
102+
implementation("androidx.compose.animation:animation-core-android:1.8.0-alpha02")
103103

104104
// build.gradle
105-
implementation 'androidx.compose.animation:animation-core-android:1.7.0-rc01'
105+
implementation 'androidx.compose.animation:animation-core-android:1.8.0-alpha02'
106106

107107
// build.gradle.kts with version catalogs:
108108
implementation(libs.animation.core.android)
109109

110110
# libs.versions.toml
111111
[versions]
112-
animation-core-android = "1.7.0-rc01"
112+
animation-core-android = "1.8.0-alpha02"
113113
[libraries]
114+
# For clarity and text wrapping purposes the following declaration is
115+
# shown split up across lines, but in TOML it needs to be on a single
116+
# line (see https://github.com/toml-lang/toml/issues/516) so adjust
117+
# when pasting into libs.versions.toml:
114118
animation-core-android = {
115119
module = "androidx.compose.animation:animation-core-android",
116120
version.ref = "animation-core-android"
117121
}
118122
```
119123

120-
1.7.0-rc01 is the version this documentation was generated from;
124+
1.8.0-alpha02 is the version this documentation was generated from;
121125
there may be newer versions available.
122126

123127
[Additional details about androidx.compose.animation:animation-core-android](androidx_compose_animation_animation-core-android.md.html).

docs/checks/ArgInFormattedQuantityStringRes.md.html

+4
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,10 @@
103103
[versions]
104104
slack-lint-checks = "0.7.4"
105105
[libraries]
106+
# For clarity and text wrapping purposes the following declaration is
107+
# shown split up across lines, but in TOML it needs to be on a single
108+
# line (see https://github.com/toml-lang/toml/issues/516) so adjust
109+
# when pasting into libs.versions.toml:
106110
slack-lint-checks = {
107111
module = "com.slack.lint:slack-lint-checks",
108112
version.ref = "slack-lint-checks"

docs/checks/AssertjImport.md.html

+4
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@
6363
[versions]
6464
lint-rules-android = "0.25.0"
6565
[libraries]
66+
# For clarity and text wrapping purposes the following declaration is
67+
# shown split up across lines, but in TOML it needs to be on a single
68+
# line (see https://github.com/toml-lang/toml/issues/516) so adjust
69+
# when pasting into libs.versions.toml:
6670
lint-rules-android = {
6771
module = "com.vanniktech:lint-rules-android",
6872
version.ref = "lint-rules-android"

docs/checks/AutoDispose.md.html

+4
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,10 @@
107107
[versions]
108108
autodispose-lint = "2.2.1"
109109
[libraries]
110+
# For clarity and text wrapping purposes the following declaration is
111+
# shown split up across lines, but in TOML it needs to be on a single
112+
# line (see https://github.com/toml-lang/toml/issues/516) so adjust
113+
# when pasting into libs.versions.toml:
110114
autodispose-lint = {
111115
module = "com.uber.autodispose2:autodispose-lint",
112116
version.ref = "autodispose-lint"

docs/checks/AutoboxingStateCreation.md.html

+8-4
Original file line numberDiff line numberDiff line change
@@ -94,25 +94,29 @@
9494

9595
```
9696
// build.gradle.kts
97-
implementation("androidx.compose.runtime:runtime-android:1.7.0-rc01")
97+
implementation("androidx.compose.runtime:runtime-android:1.8.0-alpha02")
9898

9999
// build.gradle
100-
implementation 'androidx.compose.runtime:runtime-android:1.7.0-rc01'
100+
implementation 'androidx.compose.runtime:runtime-android:1.8.0-alpha02'
101101

102102
// build.gradle.kts with version catalogs:
103103
implementation(libs.runtime.android)
104104

105105
# libs.versions.toml
106106
[versions]
107-
runtime-android = "1.7.0-rc01"
107+
runtime-android = "1.8.0-alpha02"
108108
[libraries]
109+
# For clarity and text wrapping purposes the following declaration is
110+
# shown split up across lines, but in TOML it needs to be on a single
111+
# line (see https://github.com/toml-lang/toml/issues/516) so adjust
112+
# when pasting into libs.versions.toml:
109113
runtime-android = {
110114
module = "androidx.compose.runtime:runtime-android",
111115
version.ref = "runtime-android"
112116
}
113117
```
114118

115-
1.7.0-rc01 is the version this documentation was generated from;
119+
1.8.0-alpha02 is the version this documentation was generated from;
116120
there may be newer versions available.
117121

118122
[Additional details about androidx.compose.runtime:runtime-android](androidx_compose_runtime_runtime-android.md.html).

docs/checks/AutoboxingStateValueProperty.md.html

+8-4
Original file line numberDiff line numberDiff line change
@@ -89,25 +89,29 @@
8989

9090
```
9191
// build.gradle.kts
92-
implementation("androidx.compose.runtime:runtime-android:1.7.0-rc01")
92+
implementation("androidx.compose.runtime:runtime-android:1.8.0-alpha02")
9393

9494
// build.gradle
95-
implementation 'androidx.compose.runtime:runtime-android:1.7.0-rc01'
95+
implementation 'androidx.compose.runtime:runtime-android:1.8.0-alpha02'
9696

9797
// build.gradle.kts with version catalogs:
9898
implementation(libs.runtime.android)
9999

100100
# libs.versions.toml
101101
[versions]
102-
runtime-android = "1.7.0-rc01"
102+
runtime-android = "1.8.0-alpha02"
103103
[libraries]
104+
# For clarity and text wrapping purposes the following declaration is
105+
# shown split up across lines, but in TOML it needs to be on a single
106+
# line (see https://github.com/toml-lang/toml/issues/516) so adjust
107+
# when pasting into libs.versions.toml:
104108
runtime-android = {
105109
module = "androidx.compose.runtime:runtime-android",
106110
version.ref = "runtime-android"
107111
}
108112
```
109113

110-
1.7.0-rc01 is the version this documentation was generated from;
114+
1.8.0-alpha02 is the version this documentation was generated from;
111115
there may be newer versions available.
112116

113117
[Additional details about androidx.compose.runtime:runtime-android](androidx_compose_runtime_runtime-android.md.html).

docs/checks/BadConfigurationProvider.md.html

+9-5
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
Feedback
2424
: https://issuetracker.google.com/issues/new?component=409906
2525
Min
26-
: Lint 7.0
26+
: Lint 8.0 and 8.1
2727
Compiled
2828
: Lint 8.0 and 8.1
2929
Artifact
@@ -96,25 +96,29 @@
9696

9797
```
9898
// build.gradle.kts
99-
implementation("androidx.work:work-runtime:2.10.0-alpha02")
99+
implementation("androidx.work:work-runtime:2.10.0-alpha04")
100100

101101
// build.gradle
102-
implementation 'androidx.work:work-runtime:2.10.0-alpha02'
102+
implementation 'androidx.work:work-runtime:2.10.0-alpha04'
103103

104104
// build.gradle.kts with version catalogs:
105105
implementation(libs.work.runtime)
106106

107107
# libs.versions.toml
108108
[versions]
109-
work-runtime = "2.10.0-alpha02"
109+
work-runtime = "2.10.0-alpha04"
110110
[libraries]
111+
# For clarity and text wrapping purposes the following declaration is
112+
# shown split up across lines, but in TOML it needs to be on a single
113+
# line (see https://github.com/toml-lang/toml/issues/516) so adjust
114+
# when pasting into libs.versions.toml:
111115
work-runtime = {
112116
module = "androidx.work:work-runtime",
113117
version.ref = "work-runtime"
114118
}
115119
```
116120

117-
2.10.0-alpha02 is the version this documentation was generated from;
121+
2.10.0-alpha04 is the version this documentation was generated from;
118122
there may be newer versions available.
119123

120124
[Additional details about androidx.work:work-runtime](androidx_work_work-runtime.md.html).

docs/checks/BadPeriodicWorkRequestEnqueue.md.html

+9-5
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
Feedback
2222
: https://issuetracker.google.com/issues/new?component=409906
2323
Min
24-
: Lint 7.0
24+
: Lint 8.0 and 8.1
2525
Compiled
2626
: Lint 8.0 and 8.1
2727
Artifact
@@ -52,25 +52,29 @@
5252

5353
```
5454
// build.gradle.kts
55-
implementation("androidx.work:work-runtime:2.10.0-alpha02")
55+
implementation("androidx.work:work-runtime:2.10.0-alpha04")
5656

5757
// build.gradle
58-
implementation 'androidx.work:work-runtime:2.10.0-alpha02'
58+
implementation 'androidx.work:work-runtime:2.10.0-alpha04'
5959

6060
// build.gradle.kts with version catalogs:
6161
implementation(libs.work.runtime)
6262

6363
# libs.versions.toml
6464
[versions]
65-
work-runtime = "2.10.0-alpha02"
65+
work-runtime = "2.10.0-alpha04"
6666
[libraries]
67+
# For clarity and text wrapping purposes the following declaration is
68+
# shown split up across lines, but in TOML it needs to be on a single
69+
# line (see https://github.com/toml-lang/toml/issues/516) so adjust
70+
# when pasting into libs.versions.toml:
6771
work-runtime = {
6872
module = "androidx.work:work-runtime",
6973
version.ref = "work-runtime"
7074
}
7175
```
7276

73-
2.10.0-alpha02 is the version this documentation was generated from;
77+
2.10.0-alpha04 is the version this documentation was generated from;
7478
there may be newer versions available.
7579

7680
[Additional details about androidx.work:work-runtime](androidx_work_work-runtime.md.html).

docs/checks/BinaryOperationInTimber.md.html

+7
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@
3939
Since Timber handles String#format() automatically, use this instead of
4040
String concatenation.
4141

42+
!!! Tip
43+
This lint check has an associated quickfix available in the IDE.
44+
4245
(##) Example
4346

4447
Here is an example of lint warnings produced by this check:
@@ -105,6 +108,10 @@
105108
[versions]
106109
timber = "5.0.1"
107110
[libraries]
111+
# For clarity and text wrapping purposes the following declaration is
112+
# shown split up across lines, but in TOML it needs to be on a single
113+
# line (see https://github.com/toml-lang/toml/issues/516) so adjust
114+
# when pasting into libs.versions.toml:
108115
timber = {
109116
module = "com.jakewharton.timber:timber",
110117
version.ref = "timber"

docs/checks/BindingReceiverParameter.md.html

+4
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,10 @@
156156
[versions]
157157
slack-lint-checks = "0.7.4"
158158
[libraries]
159+
# For clarity and text wrapping purposes the following declaration is
160+
# shown split up across lines, but in TOML it needs to be on a single
161+
# line (see https://github.com/toml-lang/toml/issues/516) so adjust
162+
# when pasting into libs.versions.toml:
159163
slack-lint-checks = {
160164
module = "com.slack.lint:slack-lint-checks",
161165
version.ref = "slack-lint-checks"

docs/checks/BindingReturnType.md.html

+4
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,10 @@
113113
[versions]
114114
slack-lint-checks = "0.7.4"
115115
[libraries]
116+
# For clarity and text wrapping purposes the following declaration is
117+
# shown split up across lines, but in TOML it needs to be on a single
118+
# line (see https://github.com/toml-lang/toml/issues/516) so adjust
119+
# when pasting into libs.versions.toml:
116120
slack-lint-checks = {
117121
module = "com.slack.lint:slack-lint-checks",
118122
version.ref = "slack-lint-checks"

docs/checks/BindsMustBeAbstract.md.html

+4
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,10 @@
112112
[versions]
113113
slack-lint-checks = "0.7.4"
114114
[libraries]
115+
# For clarity and text wrapping purposes the following declaration is
116+
# shown split up across lines, but in TOML it needs to be on a single
117+
# line (see https://github.com/toml-lang/toml/issues/516) so adjust
118+
# when pasting into libs.versions.toml:
115119
slack-lint-checks = {
116120
module = "com.slack.lint:slack-lint-checks",
117121
version.ref = "slack-lint-checks"

docs/checks/BindsTypeMismatch.md.html

+4
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,10 @@
121121
[versions]
122122
slack-lint-checks = "0.7.4"
123123
[libraries]
124+
# For clarity and text wrapping purposes the following declaration is
125+
# shown split up across lines, but in TOML it needs to be on a single
126+
# line (see https://github.com/toml-lang/toml/issues/516) so adjust
127+
# when pasting into libs.versions.toml:
124128
slack-lint-checks = {
125129
module = "com.slack.lint:slack-lint-checks",
126130
version.ref = "slack-lint-checks"

docs/checks/BindsWrongParameterCount.md.html

+4
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,10 @@
102102
[versions]
103103
slack-lint-checks = "0.7.4"
104104
[libraries]
105+
# For clarity and text wrapping purposes the following declaration is
106+
# shown split up across lines, but in TOML it needs to be on a single
107+
# line (see https://github.com/toml-lang/toml/issues/516) so adjust
108+
# when pasting into libs.versions.toml:
105109
slack-lint-checks = {
106110
module = "com.slack.lint:slack-lint-checks",
107111
version.ref = "slack-lint-checks"

docs/checks/BomWithoutPlatform.md.html

+3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@
3434
When including a BOM, the dependency's coordinates must be wrapped in a
3535
call to `platform()` for Gradle to interpret it correctly.
3636

37+
!!! Tip
38+
This lint check has an associated quickfix available in the IDE.
39+
3740
(##) Example
3841

3942
Here is an example of lint warnings produced by this check:

docs/checks/CastingViewContextToActivity.md.html

+4
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@
6666
[versions]
6767
slack-lint-checks = "0.7.4"
6868
[libraries]
69+
# For clarity and text wrapping purposes the following declaration is
70+
# shown split up across lines, but in TOML it needs to be on a single
71+
# line (see https://github.com/toml-lang/toml/issues/516) so adjust
72+
# when pasting into libs.versions.toml:
6973
slack-lint-checks = {
7074
module = "com.slack.lint:slack-lint-checks",
7175
version.ref = "slack-lint-checks"

docs/checks/ColorCasing.md.html

+4
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,10 @@
8888
[versions]
8989
lint-rules-android = "0.25.0"
9090
[libraries]
91+
# For clarity and text wrapping purposes the following declaration is
92+
# shown split up across lines, but in TOML it needs to be on a single
93+
# line (see https://github.com/toml-lang/toml/issues/516) so adjust
94+
# when pasting into libs.versions.toml:
9195
lint-rules-android = {
9296
module = "com.vanniktech:lint-rules-android",
9397
version.ref = "lint-rules-android"

0 commit comments

Comments
 (0)