@situm/react-native 3.9.0-beta.0 → 3.9.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -86,19 +86,7 @@ up a Situm account.
86
86
 
87
87
  #### Android
88
88
 
89
- 1. Include the Situm repository in your project level `build.gradle`:
90
-
91
- ```groovy
92
- allprojects {
93
- repositories {
94
- maven {
95
- url "https://repo.situm.es/artifactory/libs-release-local"
96
- }
97
- }
98
- }
99
- ```
100
-
101
- 2. Add the `ACCESS_FINE_LOCATION` permission to your `AndroidManifest.xml` file if you have configured Situm SDK to [use GPS](<https://developers.situm.com/sdk_documentation/android/javadoc/latest/es/situm/sdk/location/locationrequest#useGps()>):
89
+ 1. Add the `ACCESS_FINE_LOCATION` permission to your `AndroidManifest.xml` file if you have configured Situm SDK to [use GPS](<https://developers.situm.com/sdk_documentation/android/javadoc/latest/es/situm/sdk/location/locationrequest#useGps()>):
102
90
 
103
91
  ```xml
104
92
  <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
@@ -1,6 +1,14 @@
1
1
  import groovy.json.JsonSlurper
2
- apply plugin: 'com.android.library'
3
2
 
3
+ rootProject.allprojects {
4
+ repositories {
5
+ google()
6
+ mavenCentral()
7
+ maven { url "https://repo.situm.es/artifactory/libs-release-local" }
8
+ }
9
+ }
10
+
11
+ apply plugin: 'com.android.library'
4
12
 
5
13
  android {
6
14
  compileSdkVersion rootProject.ext.compileSdkVersion
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@situm/react-native",
3
- "version": "3.9.0-beta.0",
3
+ "version": "3.9.0-beta.2",
4
4
  "description": "Set of utilities that allow any developer to build React Native location based apps using Situm's indoor positioning system.",
5
5
  "private": false,
6
6
  "repository": "https://github.com/situmtech/react-native",
@@ -166,8 +166,13 @@
166
166
  "lib/"
167
167
  ],
168
168
  "prettier": {},
169
+ "expo": {
170
+ "plugins": [
171
+ "./withSitum"
172
+ ]
173
+ },
169
174
  "sdkVersions": {
170
175
  "android": "3.13.2@aar",
171
- "ios": "3.13.0"
176
+ "ios": "3.13.1"
172
177
  }
173
178
  }