Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: small typos and indents #13

Merged
merged 1 commit into from
Jul 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 23 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,38 +24,43 @@ The EVVA React-Native Module is a collection of tools to work with electronical

## Installation
```
yarn add <git remote url>
yarn add <git remote url>
```
### IOS
add the following to your Podfile:
```ruby
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.

Add the following to your Podfile:

```ruby
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.

### Android

add this to your `build.gradle` file:
Add this to your `build.gradle` file:

```ruby
repositories {
maven {
url = uri("https://maven.pkg.github.com/evva-sfw/abrevva-sdk-android")
}
}
...
dependencies {
implementation group: "com.evva.xesar", name: "abrevva-sdk-android", version: "1.0.19" <-- change to latest version.
repositories {
maven {
url = uri("https://maven.pkg.github.com/evva-sfw/abrevva-sdk-android")
}
}
...
dependencies {
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.

Add Permissions to your `Manifest.xml` file as needed.

```ruby
<uses-permission android:name="android.permission.BLUETOOTH_SCAN"/>
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
```


## Examples

### Initialize and scan for EVVA components
Expand Down
Loading