Skip to content

Commit

Permalink
Fix import of the Yat library from JitPack
Browse files Browse the repository at this point in the history
  • Loading branch information
igordanilcenko committed Feb 21, 2024
1 parent 4ce62c4 commit d00a40c
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -290,8 +290,8 @@ dependencies {

// It's recommended to use the latest version of the library from the JitPack repository,
// but you can also use a locally build version of the library by using the ":yatlib" module and `yat-lib-debug-snapshot.aar` file with your build
implementation "com.github.yat-labs:yat-lib-android:0.2.8"
// implementation project(":yatlib")
implementation "com.github.tari-project:yat-lib-android:0.4.1"
// implementation project(":yatlib")

// custom libraries region
// flex layout
Expand Down
11 changes: 0 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,6 @@ plugins {
id "de.undercouch.download" version "4.1.0"
}

allprojects {
repositories {
// for yat
google()
mavenCentral()
maven { url "https://jitpack.io" }
maven { url "https://giphy.bintray.com/giphy-sdk" }
maven { url "https://raw.githubusercontent.com/guardianproject/gpmaven/master" }
}
}

tasks.register('clean', Delete) {
delete rootProject.buildDir
}
11 changes: 11 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,13 @@
include ':app', ':yatlib'
rootProject.name='Tari Wallet'

dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url "https://giphy.bintray.com/giphy-sdk" }
maven { url "https://raw.githubusercontent.com/guardianproject/gpmaven/master" }
maven { url "https://jitpack.io" }
}
}

0 comments on commit d00a40c

Please sign in to comment.