Skip to content

Commit 79d0e2f

Browse files
committed
Update documentation snapshot (new lint security checks)
1 parent c09d6de commit 79d0e2f

26 files changed

+687
-105
lines changed

docs/checks/DefaultCleartextTraffic.md.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
Editing
3333
: This check runs on the fly in the IDE editor
3434
See
35-
: http://goo.gle/DefaultCleartextTraffic
35+
: https://goo.gle/DefaultCleartextTraffic
3636
Implementation
3737
: [Source Code](https://github.com/google/android-security-lints/tree/main/checks/src/main/java/com/example/lint/checks/MissingNetworkSecurityConfigDetector.kt)
3838
Tests
@@ -85,17 +85,17 @@
8585

8686
```
8787
// build.gradle.kts
88-
lintChecks("com.android.security.lint:lint:1.0.1")
88+
lintChecks("com.android.security.lint:lint:1.0.2")
8989

9090
// build.gradle
91-
lintChecks 'com.android.security.lint:lint:1.0.1'
91+
lintChecks 'com.android.security.lint:lint:1.0.2'
9292

9393
// build.gradle.kts with version catalogs:
9494
lintChecks(libs.com.android.security.lint.lint)
9595

9696
# libs.versions.toml
9797
[versions]
98-
com-android-security-lint-lint = "1.0.1"
98+
com-android-security-lint-lint = "1.0.2"
9999
[libraries]
100100
# For clarity and text wrapping purposes the following declaration is
101101
# shown split up across lines, but in TOML it needs to be on a single
@@ -107,7 +107,7 @@
107107
}
108108
```
109109

110-
1.0.1 is the version this documentation was generated from;
110+
1.0.2 is the version this documentation was generated from;
111111
there may be newer versions available.
112112

113113
[Additional details about com.android.security.lint:lint](com_android_security_lint_lint.md.html).

docs/checks/DefaultTrustedUserCerts.md.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
Editing
3333
: This check runs on the fly in the IDE editor
3434
See
35-
: http://goo.gle/DefaultTrustedUserCerts
35+
: https://goo.gle/DefaultTrustedUserCerts
3636
Implementation
3737
: [Source Code](https://github.com/google/android-security-lints/tree/main/checks/src/main/java/com/example/lint/checks/MissingNetworkSecurityConfigDetector.kt)
3838
Tests
@@ -87,17 +87,17 @@
8787

8888
```
8989
// build.gradle.kts
90-
lintChecks("com.android.security.lint:lint:1.0.1")
90+
lintChecks("com.android.security.lint:lint:1.0.2")
9191

9292
// build.gradle
93-
lintChecks 'com.android.security.lint:lint:1.0.1'
93+
lintChecks 'com.android.security.lint:lint:1.0.2'
9494

9595
// build.gradle.kts with version catalogs:
9696
lintChecks(libs.com.android.security.lint.lint)
9797

9898
# libs.versions.toml
9999
[versions]
100-
com-android-security-lint-lint = "1.0.1"
100+
com-android-security-lint-lint = "1.0.2"
101101
[libraries]
102102
# For clarity and text wrapping purposes the following declaration is
103103
# shown split up across lines, but in TOML it needs to be on a single
@@ -109,7 +109,7 @@
109109
}
110110
```
111111

112-
1.0.1 is the version this documentation was generated from;
112+
1.0.2 is the version this documentation was generated from;
113113
there may be newer versions available.
114114

115115
[Additional details about com.android.security.lint:lint](com_android_security_lint_lint.md.html).

docs/checks/DisabledAllSafeBrowsing.md.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
Editing
3333
: This check runs on the fly in the IDE editor
3434
See
35-
: http://goo.gle/DisabledAllSafeBrowsing
35+
: https://goo.gle/DisabledAllSafeBrowsing
3636
Implementation
3737
: [Source Code](https://github.com/google/android-security-lints/tree/main/checks/src/main/java/com/example/lint/checks/SafeBrowsingDetector.kt)
3838
Tests
@@ -89,17 +89,17 @@
8989

9090
```
9191
// build.gradle.kts
92-
lintChecks("com.android.security.lint:lint:1.0.1")
92+
lintChecks("com.android.security.lint:lint:1.0.2")
9393

9494
// build.gradle
95-
lintChecks 'com.android.security.lint:lint:1.0.1'
95+
lintChecks 'com.android.security.lint:lint:1.0.2'
9696

9797
// build.gradle.kts with version catalogs:
9898
lintChecks(libs.com.android.security.lint.lint)
9999

100100
# libs.versions.toml
101101
[versions]
102-
com-android-security-lint-lint = "1.0.1"
102+
com-android-security-lint-lint = "1.0.2"
103103
[libraries]
104104
# For clarity and text wrapping purposes the following declaration is
105105
# shown split up across lines, but in TOML it needs to be on a single
@@ -111,7 +111,7 @@
111111
}
112112
```
113113

114-
1.0.1 is the version this documentation was generated from;
114+
1.0.2 is the version this documentation was generated from;
115115
there may be newer versions available.
116116

117117
[Additional details about com.android.security.lint:lint](com_android_security_lint_lint.md.html).

docs/checks/ExposedRootPath.md.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
Editing
3333
: This check runs on the fly in the IDE editor
3434
See
35-
: http://goo.gle/ExposedRootPath
35+
: https://goo.gle/ExposedRootPath
3636
Implementation
3737
: [Source Code](https://github.com/google/android-security-lints/tree/main/checks/src/main/java/com/example/lint/checks/MisconfiguredFileProviderDetector.kt)
3838
Tests
@@ -87,17 +87,17 @@
8787

8888
```
8989
// build.gradle.kts
90-
lintChecks("com.android.security.lint:lint:1.0.1")
90+
lintChecks("com.android.security.lint:lint:1.0.2")
9191

9292
// build.gradle
93-
lintChecks 'com.android.security.lint:lint:1.0.1'
93+
lintChecks 'com.android.security.lint:lint:1.0.2'
9494

9595
// build.gradle.kts with version catalogs:
9696
lintChecks(libs.com.android.security.lint.lint)
9797

9898
# libs.versions.toml
9999
[versions]
100-
com-android-security-lint-lint = "1.0.1"
100+
com-android-security-lint-lint = "1.0.2"
101101
[libraries]
102102
# For clarity and text wrapping purposes the following declaration is
103103
# shown split up across lines, but in TOML it needs to be on a single
@@ -109,7 +109,7 @@
109109
}
110110
```
111111

112-
1.0.1 is the version this documentation was generated from;
112+
1.0.2 is the version this documentation was generated from;
113113
there may be newer versions available.
114114

115115
[Additional details about com.android.security.lint:lint](com_android_security_lint_lint.md.html).

docs/checks/InsecureDnsSdkLevel.md.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
Editing
3333
: This check runs on the fly in the IDE editor
3434
See
35-
: http://goo.gle/InsecureDnsSdkLevel
35+
: https://goo.gle/InsecureDnsSdkLevel
3636
Implementation
3737
: [Source Code](https://github.com/google/android-security-lints/tree/main/checks/src/main/java/com/example/lint/checks/DnsConfigDetector.kt)
3838
Tests
@@ -87,17 +87,17 @@
8787

8888
```
8989
// build.gradle.kts
90-
lintChecks("com.android.security.lint:lint:1.0.1")
90+
lintChecks("com.android.security.lint:lint:1.0.2")
9191

9292
// build.gradle
93-
lintChecks 'com.android.security.lint:lint:1.0.1'
93+
lintChecks 'com.android.security.lint:lint:1.0.2'
9494

9595
// build.gradle.kts with version catalogs:
9696
lintChecks(libs.com.android.security.lint.lint)
9797

9898
# libs.versions.toml
9999
[versions]
100-
com-android-security-lint-lint = "1.0.1"
100+
com-android-security-lint-lint = "1.0.2"
101101
[libraries]
102102
# For clarity and text wrapping purposes the following declaration is
103103
# shown split up across lines, but in TOML it needs to be on a single
@@ -109,7 +109,7 @@
109109
}
110110
```
111111

112-
1.0.1 is the version this documentation was generated from;
112+
1.0.2 is the version this documentation was generated from;
113113
there may be newer versions available.
114114

115115
[Additional details about com.android.security.lint:lint](com_android_security_lint_lint.md.html).

docs/checks/InsecurePermissionProtectionLevel.md.html

+5-5
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
Editing
3333
: This check runs on the fly in the IDE editor
3434
See
35-
: http://goo.gle/InsecurePermissionProtectionLevel
35+
: https://goo.gle/InsecurePermissionProtectionLevel
3636
Implementation
3737
: [Source Code](https://github.com/google/android-security-lints/tree/main/checks/src/main/java/com/example/lint/checks/PermissionDetector.kt)
3838
Tests
@@ -90,17 +90,17 @@
9090

9191
```
9292
// build.gradle.kts
93-
lintChecks("com.android.security.lint:lint:1.0.1")
93+
lintChecks("com.android.security.lint:lint:1.0.2")
9494

9595
// build.gradle
96-
lintChecks 'com.android.security.lint:lint:1.0.1'
96+
lintChecks 'com.android.security.lint:lint:1.0.2'
9797

9898
// build.gradle.kts with version catalogs:
9999
lintChecks(libs.com.android.security.lint.lint)
100100

101101
# libs.versions.toml
102102
[versions]
103-
com-android-security-lint-lint = "1.0.1"
103+
com-android-security-lint-lint = "1.0.2"
104104
[libraries]
105105
# For clarity and text wrapping purposes the following declaration is
106106
# shown split up across lines, but in TOML it needs to be on a single
@@ -112,7 +112,7 @@
112112
}
113113
```
114114

115-
1.0.1 is the version this documentation was generated from;
115+
1.0.2 is the version this documentation was generated from;
116116
there may be newer versions available.
117117

118118
[Additional details about com.android.security.lint:lint](com_android_security_lint_lint.md.html).

0 commit comments

Comments
 (0)