Skip to content

Commit 2cb8baf

Browse files
committed
Update publishing URL config for android
1 parent 5612293 commit 2cb8baf

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

android/wallet-core-proto/maven-push.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ publishing {
1010
repositories {
1111
maven {
1212
name = "GitHubPackages"
13-
url = uri("https://maven.pkg.github.com/trustwallet/wallet-core")
13+
url = uri("https://maven.pkg.github.com/1inch/wallet-core")
1414
credentials {
1515
username = System.getenv("GITHUB_USER")
1616
password = System.getenv("GITHUB_TOKEN")

android/wallet-core/maven-push.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ publishing {
1212
repositories {
1313
maven {
1414
name = "GitHubPackages"
15-
url = uri("https://maven.pkg.github.com/trustwallet/wallet-core")
15+
url = uri("https://maven.pkg.github.com/1inch/wallet-core")
1616
credentials {
1717
username = System.getenv("GITHUB_USER")
1818
password = System.getenv("GITHUB_TOKEN")

kotlin/build-logic/src/main/kotlin/convention.maven-publish.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ publishing {
1111
repositories {
1212
maven {
1313
name = "GitHubPackages"
14-
url = uri("https://maven.pkg.github.com/trustwallet/wallet-core")
14+
url = uri("https://maven.pkg.github.com/1inch/wallet-core")
1515
credentials {
1616
username = System.getenv("GITHUB_USER")
1717
password = System.getenv("GITHUB_TOKEN")

samples/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ allprojects {
2727
google()
2828
mavenCentral()
2929
maven {
30-
url = uri("https://maven.pkg.github.com/trustwallet/wallet-core")
30+
url = uri("https://maven.pkg.github.com/1inch/wallet-core")
3131
credentials {
3232
username = properties.getProperty("gpr.user") as String?: System.getenv("GITHUB_USER")
3333
password = properties.getProperty("gpr.key") as String?: System.getenv("GITHUB_TOKEN")

samples/kmp/settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ dependencyResolutionManagement {
3030
google()
3131
mavenCentral()
3232
maven {
33-
url = uri("https://maven.pkg.github.com/trustwallet/wallet-core")
33+
url = uri("https://maven.pkg.github.com/1inch/wallet-core")
3434
credentials {
3535
username = properties["gpr.user"] as? String ?: System.getenv("GITHUB_USER")
3636
password = properties["gpr.key"] as? String ?: System.getenv("GITHUB_TOKEN")

0 commit comments

Comments
 (0)