@maplibre/maplibre-react-native 10.0.0-alpha.15 → 10.0.0-alpha.16
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.16
|
|
10
|
+
|
|
11
|
+
fix: [another attempt to disable code signing](<[#451](https://github.com/maplibre/maplibre-react-native/pull/451)>)
|
|
12
|
+
|
|
9
13
|
## 10.0.0-alpha.15
|
|
10
14
|
|
|
11
15
|
fix: [disable code signing for release builds](<[#450](https://github.com/maplibre/maplibre-react-native/pull/450)>)
|
|
@@ -658,6 +658,8 @@
|
|
|
658
658
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
659
659
|
CODE_SIGN_IDENTITY = "";
|
|
660
660
|
CODE_SIGNING_REQUIRED = NO;
|
|
661
|
+
CODE_SIGN_ENTITLEMENTS = "";
|
|
662
|
+
CODE_SIGNING_ALLOWED = NO;
|
|
661
663
|
COPY_PHASE_STRIP = NO;
|
|
662
664
|
DEBUG_INFORMATION_FORMAT = dwarf;
|
|
663
665
|
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
@@ -708,6 +710,8 @@
|
|
|
708
710
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
709
711
|
CODE_SIGN_IDENTITY = "";
|
|
710
712
|
CODE_SIGNING_REQUIRED = NO;
|
|
713
|
+
CODE_SIGN_ENTITLEMENTS = "";
|
|
714
|
+
CODE_SIGNING_ALLOWED = NO;
|
|
711
715
|
COPY_PHASE_STRIP = NO;
|
|
712
716
|
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
713
717
|
ENABLE_NS_ASSERTIONS = NO;
|
package/package.json
CHANGED