@maplibre/maplibre-react-native 10.0.0-alpha.14 → 10.0.0-alpha.15
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
|
@@ -6,6 +6,10 @@ PR Title ([#123](link to my pr))
|
|
|
6
6
|
|
|
7
7
|
```
|
|
8
8
|
|
|
9
|
+
## 10.0.0-alpha.15
|
|
10
|
+
|
|
11
|
+
fix: [disable code signing for release builds](<[#450](https://github.com/maplibre/maplibre-react-native/pull/450)>)
|
|
12
|
+
|
|
9
13
|
## 10.0.0-alpha.14
|
|
10
14
|
|
|
11
15
|
fix: [disable library code signing](<[#447](https://github.com/maplibre/maplibre-react-native/pull/447)>)
|
|
@@ -706,7 +706,8 @@
|
|
|
706
706
|
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
707
707
|
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
708
708
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
709
|
-
|
|
709
|
+
CODE_SIGN_IDENTITY = "";
|
|
710
|
+
CODE_SIGNING_REQUIRED = NO;
|
|
710
711
|
COPY_PHASE_STRIP = NO;
|
|
711
712
|
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
712
713
|
ENABLE_NS_ASSERTIONS = NO;
|
package/package.json
CHANGED