expo-location 18.0.0 → 18.0.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/CHANGELOG.md CHANGED
@@ -10,6 +10,16 @@
10
10
 
11
11
  ### 💡 Others
12
12
 
13
+ ## 18.0.2 — 2024-11-19
14
+
15
+ ### 🐛 Bug fixes
16
+
17
+ - Fixed NoClassDefFoundError for `Landroid/support/v4/app/ActivityCompat;`. ([#33088](https://github.com/expo/expo/pull/33088) by [@kudo](https://github.com/kudo))
18
+
19
+ ## 18.0.1 — 2024-10-22
20
+
21
+ _This version does not introduce any user-facing changes._
22
+
13
23
  ## 18.0.0 — 2024-10-22
14
24
 
15
25
  ### 🛠 Breaking changes
@@ -1,7 +1,7 @@
1
1
  apply plugin: 'com.android.library'
2
2
 
3
3
  group = 'host.exp.exponent'
4
- version = '18.0.0'
4
+ version = '18.0.2'
5
5
 
6
6
  def expoModulesCorePlugin = new File(project(":expo-modules-core").projectDir.absolutePath, "ExpoModulesCorePlugin.gradle")
7
7
  apply from: expoModulesCorePlugin
@@ -14,13 +14,11 @@ android {
14
14
  namespace "expo.modules.location"
15
15
  defaultConfig {
16
16
  versionCode 29
17
- versionName "18.0.0"
17
+ versionName "18.0.2"
18
18
  }
19
19
  }
20
20
 
21
21
  dependencies {
22
22
  api 'com.google.android.gms:play-services-location:21.0.1'
23
- api('io.nlopez.smartlocation:library:3.3.3') {
24
- transitive = false
25
- }
23
+ implementation project(":${project.name}\$io.nlopez.smartlocation-jetified-aar")
26
24
  }
@@ -11,6 +11,12 @@
11
11
  "android": {
12
12
  "modules": [
13
13
  "expo.modules.location.LocationModule"
14
+ ],
15
+ "gradleAarProjects": [
16
+ {
17
+ "name": "io.nlopez.smartlocation-jetified-aar",
18
+ "aarFilePath": "android/libs/io.nlopez.smartlocation-3.3.3-jetified.aar"
19
+ }
14
20
  ]
15
21
  }
16
22
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-location",
3
- "version": "18.0.0",
3
+ "version": "18.0.2",
4
4
  "description": "Allows reading geolocation information from the device. Your app can poll for the current location or subscribe to location update events.",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
@@ -44,5 +44,5 @@
44
44
  "peerDependencies": {
45
45
  "expo": "*"
46
46
  },
47
- "gitHead": "7c7d2362fff23bec26cd145ed34edd9c403551bd"
47
+ "gitHead": "128718d43bac2eaed764b3551469b95400f2363e"
48
48
  }