Skip to content

Commit

Permalink
chore: load correct sdk package from github
Browse files Browse the repository at this point in the history
  • Loading branch information
axi92 committed Jul 26, 2024
1 parent fbafb77 commit e92bf52
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -139,4 +139,4 @@ example/android/app/build/
example/vendor/
example/android/.idea/
example/android/local.properties

android/build
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@ The EVVA React-Native Module is a collection of tools to work with electronical

## Requirements

Java 17+
Android SDK
xCode
react-native < 0.74.3
iOS 15.0+
Android 10+ (API level 29)
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ dependencies {
//noinspection GradleDynamicVersion
implementation "com.facebook.react:react-native:+"
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation group: "com.evva.xesar", name: "abrevva-sdk-android", version: "1.0.15"
implementation group: "com.evva.xesar", name: "abrevva-sdk-android", version: "1.0.19"

}

8 changes: 6 additions & 2 deletions example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,12 @@ repositories {
mavenCentral()
mavenLocal()
maven {
name = "evva-maven"
url = url = uri("https://maven.pkg.github.com/evva-sfw/abrevva-sdk-android")
name = 'evva-maven'
url = url = uri('https://maven.pkg.github.com/evva-sfw/abrevva-sdk-android')
credentials {
username = project.findProperty('github.user') ?: System.getenv('USERNAME')
password = project.findProperty('github.key') ?: System.getenv('TOKEN')
}
}
}

Expand Down

0 comments on commit e92bf52

Please sign in to comment.