Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion mobile/android/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
allprojects {
repositories {
google()
mavenCentral()
maven(url = "https://global.block-artifacts.com/artifactory/square-public")
}
}

Expand Down
3 changes: 1 addition & 2 deletions mobile/android/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ pluginManagement {

repositories {
google()
mavenCentral()
gradlePluginPortal()
maven(url = "https://global.block-artifacts.com/artifactory/square-public")

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🤖 This makes an internal-only host the sole plugin repository in a public OSS project. The public GitHub-hosted Mobile job now fails here after seven minutes because it cannot resolve org.jetbrains.kotlin.android:org.jetbrains.kotlin.android.gradle.plugin:2.2.20, while the same artifact returns 200 on a Block-connected machine. global.block-artifacts.com publicly resolves to RFC1918 10.172.x addresses, so anonymous authorization does not make it publicly reachable. Please keep a public repository path for external contributors, or scope this mirror override to Block release CI.

}
}

Expand Down
Loading