Skip to content

Commit 5cc71d0

Browse files
Update Flutter wiki links (flutter#6789)
Updates all links to the Flutter wiki to point to their new location in the flutter/flutter repository. (The sole exception is a link to a doc that doesn't have a final home yet, and is linked from legacy code anyway so doesn't really need to be updated.) While touching the PR template, makes a few minor improvements: - Removes the breaking change discussion that doesn't apply to this repository, as breaking changes are handled totally differently for packages (and is covered by the link to docs about Dart versioning). - Adds text and a link to reflect the fact that some PRs can be changelog-exempt.
1 parent d52b992 commit 5cc71d0

File tree

150 files changed

+187
-190
lines changed

Some content is hidden

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

150 files changed

+187
-190
lines changed

.ci/targets/analyze_legacy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ tasks:
77
# This is to minimize accidentally making changes that break old versions
88
# (which we don't commit to supporting, but don't want to actively break)
99
# without updating the constraints.
10-
# See https://github.com/flutter/flutter/wiki/Contributing-to-Plugins-and-Packages#supported-flutter-versions
10+
# See https://github.com/flutter/flutter/blob/master/docs/ecosystem/contributing/README.md#supported-flutter-versions
1111
- name: analyze - legacy
1212
script: .ci/scripts/analyze_legacy.sh

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,16 @@
22

33
*List which issues are fixed by this PR. You must list at least one issue.*
44

5-
*If you had to change anything in the [flutter/tests] repo, include a link to the migration guide as per the [breaking change policy].*
6-
75
## Pre-launch Checklist
86

97
- [ ] I read the [Contributor Guide] and followed the process outlined there for submitting PRs.
10-
- [ ] I read the [Tree Hygiene] wiki page, which explains my responsibilities.
8+
- [ ] I read the [Tree Hygiene] page, which explains my responsibilities.
119
- [ ] I read and followed the [relevant style guides] and ran the auto-formatter. (Unlike the flutter/flutter repo, the flutter/packages repo does use `dart format`.)
1210
- [ ] I signed the [CLA].
1311
- [ ] The title of the PR starts with the name of the package surrounded by square brackets, e.g. `[shared_preferences]`
1412
- [ ] I [linked to at least one issue that this PR fixes] in the description above.
1513
- [ ] I updated `pubspec.yaml` with an appropriate new version according to the [pub versioning philosophy], or this PR is [exempt from version changes].
16-
- [ ] I updated `CHANGELOG.md` to add a description of the change, [following repository CHANGELOG style].
14+
- [ ] I updated `CHANGELOG.md` to add a description of the change, [following repository CHANGELOG style], or this PR is [exempt from CHANGELOG changes].
1715
- [ ] I updated/added relevant documentation (doc comments with `///`).
1816
- [ ] I added new tests to check the change I am making, or this PR is [test-exempt].
1917
- [ ] All existing and new tests are passing.
@@ -22,14 +20,13 @@ If you need help, consider asking for advice on the #hackers-new channel on [Dis
2220

2321
<!-- Links -->
2422
[Contributor Guide]: https://github.com/flutter/packages/blob/main/CONTRIBUTING.md
25-
[Tree Hygiene]: https://github.com/flutter/flutter/wiki/Tree-hygiene
23+
[Tree Hygiene]: https://github.com/flutter/flutter/blob/master/docs/contributing/Tree-hygiene.md
2624
[relevant style guides]: https://github.com/flutter/packages/blob/main/CONTRIBUTING.md#style
2725
[CLA]: https://cla.developers.google.com/
28-
[flutter/tests]: https://github.com/flutter/tests
29-
[breaking change policy]: https://github.com/flutter/flutter/wiki/Tree-hygiene#handling-breaking-changes
30-
[Discord]: https://github.com/flutter/flutter/wiki/Chat
31-
[linked to at least one issue that this PR fixes]: https://github.com/flutter/flutter/wiki/Tree-hygiene#overview
26+
[Discord]: https://github.com/flutter/flutter/blob/master/docs/contributing/Chat.md
27+
[linked to at least one issue that this PR fixes]: https://github.com/flutter/flutter/blob/master/docs/contributing/Tree-hygiene.md#overview
3228
[pub versioning philosophy]: https://dart.dev/tools/pub/versioning
33-
[exempt from version changes]: https://github.com/flutter/flutter/wiki/Contributing-to-Plugins-and-Packages#version-and-changelog-updates
34-
[following repository CHANGELOG style]: https://github.com/flutter/flutter/wiki/Contributing-to-Plugins-and-Packages#changelog-style
35-
[test-exempt]: https://github.com/flutter/flutter/wiki/Tree-hygiene#tests
29+
[exempt from version changes]: https://github.com/flutter/flutter/blob/master/docs/ecosystem/contributing/README.md#version
30+
[following repository CHANGELOG style]: https://github.com/flutter/flutter/blob/master/docs/ecosystem/contributing/README.md#changelog-style
31+
[exempt from CHANGELOG changes]: https://github.com/flutter/flutter/blob/master/docs/ecosystem/contributing/README.md#changelog
32+
[test-exempt]: https://github.com/flutter/flutter/blob/master/docs/contributing/Tree-hygiene.md#tests

CONTRIBUTING.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ guide](https://github.com/flutter/flutter/blob/master/CONTRIBUTING.md).
55

66
Additional resources specific to the packages repository:
77
- [Setting up the Packages development
8-
environment](https://github.com/flutter/flutter/wiki/Setting-up-the-Packages-development-environment),
8+
environment](https://github.com/flutter/flutter/blob/master/docs/ecosystem/contributing/Setting-up-the-Packages-development-environment.md),
99
which covers the setup process for this repository.
10-
- [Packages repository structure](https://github.com/flutter/flutter/wiki/Plugins-and-Packages-repository-structure),
10+
- [Packages repository structure](https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md),
1111
to get an overview of how this repository is laid out.
12-
- [Contributing to Plugins and Packages](https://github.com/flutter/flutter/wiki/Contributing-to-Plugins-and-Packages),
12+
- [Contributing to Plugins and Packages](https://github.com/flutter/flutter/blob/master/docs/ecosystem/contributing/README.md),
1313
for more information about how to make PRs for this repository, especially when
1414
changing federated plugins.
15-
- [Plugin tests](https://github.com/flutter/flutter/wiki/Plugin-Tests), which explains
16-
the different kinds of tests used for plugins, where to find them, and how to run them.
15+
- [Plugin tests](https://github.com/flutter/flutter/blob/master/docs/ecosystem/testing/Plugin-Tests.md),
16+
which explains the different kinds of tests used for plugins, where to find them, and how to run them.
1717
As explained in the Flutter guide,
18-
[**PRs need tests**](https://github.com/flutter/flutter/wiki/Tree-hygiene#tests), so
18+
[**PRs need tests**](https://github.com/flutter/flutter/blob/master/docs/contributing/Tree-hygiene.md#tests), so
1919
this is critical to read before submitting a plugin PR.
2020

2121
### Code review processes and automation
@@ -24,14 +24,14 @@ PRs will automatically be assigned to
2424
[code owners](https://github.com/flutter/packages/blob/main/CODEOWNERS)
2525
for review.
2626
If a code owner is creating a PR, they should explicitly pick another
27-
[Flutter team member](https://github.com/flutter/flutter/wiki/Contributor-access)
27+
[Flutter team member](https://github.com/flutter/flutter/blob/master/docs/contributing/Contributor-access.md)
2828
as a code reviewer.
2929

3030
### Style
3131

3232
Flutter packages and plugins follow Google style—or Flutter style for Dart—for the languages they
3333
use, and use auto-formatters:
34-
- [Dart](https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo) formatted
34+
- [Dart](https://github.com/flutter/flutter/blob/master/docs/contributing/Style-guide-for-Flutter-repo.md) formatted
3535
with `dart format`
3636
- [C++](https://google.github.io/styleguide/cppguide.html) formatted with `clang-format`
3737
- **Note**: The Linux plugins generally follow idiomatic GObject-based C
@@ -50,4 +50,4 @@ use, and use auto-formatters:
5050

5151
If you are a team member landing a PR, or just want to know what the release
5252
process is for package changes, see [the release
53-
documentation](https://github.com/flutter/flutter/wiki/Releasing-a-Plugin-or-Package).
53+
documentation](https://github.com/flutter/flutter/blob/master/docs/ecosystem/release/README.md).

analysis_options.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ linter:
147147
# - prefer_constructors_over_static_methods # far too many false positives
148148
- prefer_contains
149149
# - prefer_double_quotes # opposite of prefer_single_quotes
150-
# - prefer_expression_function_bodies # conflicts with https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo#consider-using--for-short-functions-and-methods
150+
# - prefer_expression_function_bodies # conflicts with https://github.com/flutter/flutter/blob/master/docs/contributing/Style-guide-for-Flutter-repo.md#consider-using--for-short-functions-and-methods
151151
- prefer_final_fields
152152
- prefer_final_in_for_each
153153
- prefer_final_locals
@@ -160,7 +160,7 @@ linter:
160160
- prefer_if_null_operators
161161
- prefer_initializing_formals
162162
- prefer_inlined_adds
163-
# - prefer_int_literals # conflicts with https://github.com/flutter/flutter/wiki/Style-guide-for-Flutter-repo#use-double-literals-for-double-constants
163+
# - prefer_int_literals # conflicts with https://github.com/flutter/flutter/blob/master/docs/contributing/Style-guide-for-Flutter-repo.md#use-double-literals-for-double-constants
164164
- prefer_interpolation_to_compose_strings
165165
- prefer_is_empty
166166
- prefer_is_not_empty

packages/animations/example/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildscript {
1313

1414
allprojects {
1515
repositories {
16-
// See https://github.com/flutter/flutter/wiki/Plugins-and-Packages-repository-structure#gradle-structure for more info.
16+
// See https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md#gradle-structure for more info.
1717
def artifactRepoKey = 'ARTIFACT_HUB_REPOSITORY'
1818
if (System.getenv().containsKey(artifactRepoKey)) {
1919
println "Using artifact hub"

packages/animations/example/android/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ plugins.each { name, path ->
1414
project(":$name").projectDir = pluginDirectory
1515
}
1616

17-
// See https://github.com/flutter/flutter/wiki/Plugins-and-Packages-repository-structure#gradle-structure for more info.
17+
// See https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md#gradle-structure for more info.
1818
buildscript {
1919
repositories {
2020
maven {

packages/camera/camera/example/android/app/src/androidTest/java/io/flutter/plugins/DartIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* Annotation to aid repository tooling in determining if a test is
1414
* a native java unit test or a java class with a dart integration.
1515
*
16-
* See: https://github.com/flutter/flutter/wiki/Plugin-Tests#enabling-android-ui-tests
16+
* See: https://github.com/flutter/flutter/blob/master/docs/ecosystem/testing/Plugin-Tests.md#enabling-android-ui-tests
1717
* for more infomation.
1818
*/
1919
@Retention(RetentionPolicy.RUNTIME)

packages/camera/camera/example/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ buildscript {
1111

1212
allprojects {
1313
repositories {
14-
// See https://github.com/flutter/flutter/wiki/Plugins-and-Packages-repository-structure#gradle-structure for more info.
14+
// See https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md#gradle-structure for more info.
1515
def artifactRepoKey = 'ARTIFACT_HUB_REPOSITORY'
1616
if (System.getenv().containsKey(artifactRepoKey)) {
1717
println "Using artifact hub"

packages/camera/camera/example/android/settings.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ plugins.each { name, path ->
1414
project(":$name").projectDir = pluginDirectory
1515
}
1616

17-
// See https://github.com/flutter/flutter/wiki/Plugins-and-Packages-repository-structure#gradle-structure for more info.
17+
// See https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md#gradle-structure for more info.
1818
buildscript {
1919
repositories {
2020
maven {
@@ -25,4 +25,4 @@ buildscript {
2525
classpath "gradle.plugin.com.google.cloud.artifactregistry:artifactregistry-gradle-plugin:2.2.1"
2626
}
2727
}
28-
apply plugin: "com.google.cloud.artifactregistry.gradle-plugin"
28+
apply plugin: "com.google.cloud.artifactregistry.gradle-plugin"

packages/camera/camera_android/example/android/app/src/androidTest/java/io/flutter/plugins/DartIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* Annotation to aid repository tooling in determining if a test is
1414
* a native java unit test or a java class with a dart integration.
1515
*
16-
* See: https://github.com/flutter/flutter/wiki/Plugin-Tests#enabling-android-ui-tests
16+
* See: https://github.com/flutter/flutter/blob/master/docs/ecosystem/testing/Plugin-Tests.md#enabling-android-ui-tests
1717
* for more infomation.
1818
*/
1919
@Retention(RetentionPolicy.RUNTIME)

packages/camera/camera_android/example/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ buildscript {
1111

1212
allprojects {
1313
repositories {
14-
// See https://github.com/flutter/flutter/wiki/Plugins-and-Packages-repository-structure#gradle-structure for more info.
14+
// See https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md#gradle-structure for more info.
1515
def artifactRepoKey = 'ARTIFACT_HUB_REPOSITORY'
1616
if (System.getenv().containsKey(artifactRepoKey)) {
1717
println "Using artifact hub"

packages/camera/camera_android/example/android/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ plugins.each { name, path ->
1414
project(":$name").projectDir = pluginDirectory
1515
}
1616

17-
// See https://github.com/flutter/flutter/wiki/Plugins-and-Packages-repository-structure#gradle-structure for more info.
17+
// See https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md#gradle-structure for more info.
1818
buildscript {
1919
repositories {
2020
maven {

packages/camera/camera_android_camerax/CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,5 +74,5 @@ testing purposes. To generate the mock objects, run
7474
[2]: https://docs.google.com/document/d/1wXB1zNzYhd2SxCu1_BK3qmNWRhonTB6qdv4erdtBQqo/edit?usp=sharing&resourcekey=0-WOBqqOKiO9SARnziBg28pg
7575
[3]: https://github.com/flutter/packages/blob/main/CONTRIBUTING.md
7676
[4]: https://pub.dev/packages/mockito
77-
[5]: https://github.com/flutter/flutter/wiki/Plugin-Tests#running-tests
78-
[6]: https://github.com/flutter/flutter/wiki/Chat
77+
[5]: https://github.com/flutter/flutter/blob/master/docs/ecosystem/testing/Plugin-Tests.md#running-tests
78+
[6]: https://github.com/flutter/flutter/blob/master/docs/contributing/Chat.md

packages/camera/camera_android_camerax/example/android/app/src/androidTest/java/io/flutter/plugins/DartIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* Annotation to aid repository tooling in determining if a test is
1414
* a native java unit test or a java class with a dart integration.
1515
*
16-
* See: https://github.com/flutter/flutter/wiki/Plugin-Tests#enabling-android-ui-tests
16+
* See: https://github.com/flutter/flutter/blob/master/docs/ecosystem/testing/Plugin-Tests.md#enabling-android-ui-tests
1717
* for more infomation.
1818
*/
1919
@Retention(RetentionPolicy.RUNTIME)

packages/camera/camera_android_camerax/example/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ buildscript {
1616

1717
allprojects {
1818
repositories {
19-
// See https://github.com/flutter/flutter/wiki/Plugins-and-Packages-repository-structure#gradle-structure for more info.
19+
// See https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md#gradle-structure for more info.
2020
def artifactRepoKey = 'ARTIFACT_HUB_REPOSITORY'
2121
if (System.getenv().containsKey(artifactRepoKey)) {
2222
println "Using artifact hub"

packages/camera/camera_android_camerax/example/android/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def flutterSdkPath = properties.getProperty("flutter.sdk")
1010
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
1111
apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"
1212

13-
// See https://github.com/flutter/flutter/wiki/Plugins-and-Packages-repository-structure#gradle-structure for more info.
13+
// See https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md#gradle-structure for more info.
1414
buildscript {
1515
repositories {
1616
maven {

packages/camera/camera_web/example/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ very unlikely to be relevant.
1212

1313
This package uses `package:integration_test` to run its tests in a web browser.
1414

15-
See [Plugin Tests > Web Tests](https://github.com/flutter/flutter/wiki/Plugin-Tests#web-tests)
16-
in the Flutter wiki for instructions to setup and run the tests in this package.
15+
See [Plugin Tests > Web Tests](https://github.com/flutter/flutter/blob/master/docs/ecosystem/testing/Plugin-Tests.md#web-tests)
16+
in the Flutter documentation for instructions to set up and run the tests in this package.
1717

1818
Check [flutter.dev > Integration testing](https://flutter.dev/docs/testing/integration-tests)
1919
for more info.

packages/dynamic_layouts/example/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildscript {
1313

1414
allprojects {
1515
repositories {
16-
// See https://github.com/flutter/flutter/wiki/Plugins-and-Packages-repository-structure#gradle-structure for more info.
16+
// See https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md#gradle-structure for more info.
1717
def artifactRepoKey = 'ARTIFACT_HUB_REPOSITORY'
1818
if (System.getenv().containsKey(artifactRepoKey)) {
1919
println "Using artifact hub"

packages/dynamic_layouts/example/android/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def flutterSdkPath = properties.getProperty("flutter.sdk")
1010
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
1111
apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"
1212

13-
// See https://github.com/flutter/flutter/wiki/Plugins-and-Packages-repository-structure#gradle-structure for more info.
13+
// See https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md#gradle-structure for more info.
1414
buildscript {
1515
repositories {
1616
maven {

packages/espresso/example/android/app/src/androidTest/java/io/flutter/plugins/DartIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* Annotation to aid repository tooling in determining if a test is
1414
* a native java unit test or a java class with a dart integration.
1515
*
16-
* See: https://github.com/flutter/flutter/wiki/Plugin-Tests#enabling-android-ui-tests
16+
* See: https://github.com/flutter/flutter/blob/master/docs/ecosystem/testing/Plugin-Tests.md#enabling-android-ui-tests
1717
* for more infomation.
1818
*/
1919
@Retention(RetentionPolicy.RUNTIME)

packages/espresso/example/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ buildscript {
1111

1212
allprojects {
1313
repositories {
14-
// See https://github.com/flutter/flutter/wiki/Plugins-and-Packages-repository-structure#gradle-structure for more info.
14+
// See https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md#gradle-structure for more info.
1515
def artifactRepoKey = 'ARTIFACT_HUB_REPOSITORY'
1616
if (System.getenv().containsKey(artifactRepoKey)) {
1717
println "Using artifact hub"

packages/espresso/example/android/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ plugins.each { name, path ->
1414
project(":$name").projectDir = pluginDirectory
1515
}
1616

17-
// See https://github.com/flutter/flutter/wiki/Plugins-and-Packages-repository-structure#gradle-structure for more info.
17+
// See https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md#gradle-structure for more info.
1818
buildscript {
1919
repositories {
2020
maven {

packages/extension_google_sign_in_as_googleapis_auth/example/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ buildscript {
1212

1313
allprojects {
1414
repositories {
15-
// See https://github.com/flutter/flutter/wiki/Plugins-and-Packages-repository-structure#gradle-structure for more info.
15+
// See https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md#gradle-structure for more info.
1616
def artifactRepoKey = 'ARTIFACT_HUB_REPOSITORY'
1717
if (System.getenv().containsKey(artifactRepoKey)) {
1818
println "Using artifact hub"

packages/extension_google_sign_in_as_googleapis_auth/example/android/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def flutterSdkPath = properties.getProperty("flutter.sdk")
1010
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
1111
apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"
1212

13-
// See https://github.com/flutter/flutter/wiki/Plugins-and-Packages-repository-structure#gradle-structure for more info.
13+
// See https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md#gradle-structure for more info.
1414
buildscript {
1515
repositories {
1616
maven {

packages/file_selector/file_selector/example/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ buildscript {
1313

1414
allprojects {
1515
repositories {
16-
// See https://github.com/flutter/flutter/wiki/Plugins-and-Packages-repository-structure#gradle-structure for more info.
16+
// See https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md#gradle-structure for more info.
1717
def artifactRepoKey = 'ARTIFACT_HUB_REPOSITORY'
1818
if (System.getenv().containsKey(artifactRepoKey)) {
1919
println "Using artifact hub"

packages/file_selector/file_selector/example/android/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def flutterSdkPath = properties.getProperty("flutter.sdk")
1010
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
1111
apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"
1212

13-
// See https://github.com/flutter/flutter/wiki/Plugins-and-Packages-repository-structure#gradle-structure for more info.
13+
// See https://github.com/flutter/flutter/blob/master/docs/ecosystem/Plugins-and-Packages-repository-structure.md#gradle-structure for more info.
1414
buildscript {
1515
repositories {
1616
maven {

packages/file_selector/file_selector_android/example/android/app/src/main/java/io/flutter/plugins/DartIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* Annotation to aid repository tooling in determining if a test is
1414
* a native java unit test or a java class with a dart integration.
1515
*
16-
* See: https://github.com/flutter/flutter/wiki/Plugin-Tests#enabling-android-ui-tests
16+
* See: https://github.com/flutter/flutter/blob/master/docs/ecosystem/testing/Plugin-Tests.md#enabling-android-ui-tests
1717
* for more infomation.
1818
*/
1919
@Retention(RetentionPolicy.RUNTIME)

0 commit comments

Comments
 (0)