Skip to content

Commit

Permalink
chore: small typos and indents
Browse files Browse the repository at this point in the history
  • Loading branch information
0x7061 committed Jul 29, 2024
1 parent cf7db3c commit c35769b
Showing 1 changed file with 23 additions and 18 deletions.
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

0 comments on commit c35769b

Please sign in to comment.