react-native-maps 1.21.0-alpha.1 → 1.21.0-alpha.3

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.
@@ -17,12 +17,16 @@ buildscript {
17
17
  }
18
18
  }
19
19
 
20
- apply plugin: 'com.android.library'
21
-
22
20
  def isNewArchitectureEnabled() {
23
21
  return project.hasProperty("newArchEnabled") && project.newArchEnabled == "true"
24
22
  }
25
23
 
24
+ apply plugin: 'com.android.library'
25
+ if (isNewArchitectureEnabled()) {
26
+ apply plugin: 'com.facebook.react'
27
+ }
28
+ apply plugin: 'kotlin-android'
29
+
26
30
  android {
27
31
  namespace "com.rnmaps.maps"
28
32
  def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "main": "lib/index.js",
6
6
  "author": "Leland Richardson <leland.m.richardson@gmail.com>",
7
7
  "homepage": "https://github.com/react-native-maps/react-native-maps#readme",
8
- "version": "1.21.0-alpha.1",
8
+ "version": "1.21.0-alpha.3",
9
9
  "license": "MIT",
10
10
  "scripts": {
11
11
  "lint": "eslint . --max-warnings 0",
@@ -93,7 +93,10 @@
93
93
  "codegenConfig": {
94
94
  "name": "RNMapsSpecs",
95
95
  "type": "all",
96
- "jsSrcsDir": "./src/specs"
96
+ "jsSrcsDir": "./src/specs",
97
+ "android": {
98
+ "javaPackageName": "com.rnmaps.fabric"
99
+ }
97
100
  },
98
101
  "engines": {
99
102
  "node": ">=18"