Skip to content

Commit

Permalink
chore: fix internal links (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
axi92 authored Jul 25, 2024
1 parent 405a8ee commit 952c2d6
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ The EVVA React-Native Module is a collection of tools to work with electronical
### IOS
add the following to your Podfile:
```ruby
source 'https://bach1.evva.com/bitbucket/scm/xm/abrevva-pod-specs.git'
source 'https://github.com/evva-sfw/abrevva-sdk-ios-pod-specs.git'
source 'https://cdn.cocoapods.org/'
```
then execute `pod install` inside of your projects ios/ folder.
Expand All @@ -40,12 +40,12 @@ The EVVA React-Native Module is a collection of tools to work with electronical
```ruby
repositories {
maven {
url = uri("https://nexus.evva.link/nexus/repository/evva-releases")
url = uri("https://maven.pkg.github.com/evva-sfw/abrevva-sdk-android")
}
}
...
dependencies {
implementation group: "com.evva.xesar", name: "abrevva-android-sdk", version: "1.0.0" <-- change to latest version.
implementation group: "com.evva.xesar", name: "abrevva-sdk-android", version: "1.0.19" <-- change to latest version.
}
```
add Permissions to your `Manifest.xml` file as needed.
Expand Down
6 changes: 3 additions & 3 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ repositories {
mavenCentral()
mavenLocal()
maven {
name = "evva-maven"
url = uri("https://nexus.evva.link/nexus/repository/evva-releases/")
name = "evva-github"
url = url = uri("https://maven.pkg.github.com/evva-sfw/abrevva-sdk-android")
}
}

Expand All @@ -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-android-sdk", version: "1.0.15"
implementation group: "com.evva.xesar", name: "abrevva-sdk-android", version: "1.0.15"

}

4 changes: 2 additions & 2 deletions example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -115,14 +115,14 @@ repositories {
mavenLocal()
maven {
name = "evva-maven"
url = uri("https://nexus.evva.link/nexus/repository/evva-releases/")
url = url = uri("https://maven.pkg.github.com/evva-sfw/abrevva-sdk-android")
}
}

dependencies {
// The version of react-native is set by the React Native Gradle Plugin
implementation("com.facebook.react:react-android")
implementation group: "com.evva.xesar", name: "abrevva-android-sdk", version: "1.0.15"
implementation group: "com.evva.xesar", name: "abrevva-sdk-android", version: "1.0.15"

if (hermesEnabled.toBoolean()) {
implementation("com.facebook.react:hermes-android")
Expand Down
2 changes: 1 addition & 1 deletion example/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ require Pod::Executable.execute_command('node', ['-p',
platform :ios, '15.0'
prepare_react_native_project!

source 'https://bach1.evva.com/bitbucket/scm/xm/abrevva-pod-specs.git'
source 'https://github.com/evva-sfw/abrevva-sdk-ios-pod-specs.git'
source 'https://cdn.cocoapods.org/'

# If you are using a `react-native-flipper` your iOS build will fail when `NO_FLIPPER=1` is set.
Expand Down
2 changes: 1 addition & 1 deletion example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1289,7 +1289,7 @@ DEPENDENCIES:
- Yoga (from `../../node_modules/react-native/ReactCommon/yoga`)

SPEC REPOS:
https://bach1.evva.com/bitbucket/scm/xm/abrevva-pod-specs.git:
https://github.com/evva-sfw/abrevva-sdk-ios-pod-specs.git:
- AbrevvaSDK
trunk:
- CocoaMQTT
Expand Down

0 comments on commit 952c2d6

Please sign in to comment.