From 9c6e1a69cb70ed19f5da2d83216080b50aa1184f Mon Sep 17 00:00:00 2001 From: Luca Spinazzola Date: Wed, 16 Aug 2023 23:17:02 -0400 Subject: [PATCH] add dependency info --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 279abc4c..85fe142b 100644 --- a/README.md +++ b/README.md @@ -32,16 +32,18 @@ Google's libphonenumber is a great library but it has to major flaws when used o The goal of this library is to fix these two issues. -Download +Setup -------- Gradle: ```groovy repositories { - mavenCentral() + mavenCentral() + // For snapshots + maven("https://s01.oss.sonatype.org/content/repositories/snapshots/") } dependencies { - // todo: publish to mavenCentral + implementation("io.github.luca992.libphonenumber-kotlin:libphonenumber:0.1.0-SNAPSHOT") } ```