@maplibre/maplibre-react-native 10.0.0-alpha.14 → 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,14 @@ 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
|
+
|
|
13
|
+
## 10.0.0-alpha.15
|
|
14
|
+
|
|
15
|
+
fix: [disable code signing for release builds](<[#450](https://github.com/maplibre/maplibre-react-native/pull/450)>)
|
|
16
|
+
|
|
9
17
|
## 10.0.0-alpha.14
|
|
10
18
|
|
|
11
19
|
fix: [disable library code signing](<[#447](https://github.com/maplibre/maplibre-react-native/pull/447)>)
|
|
@@ -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;
|
|
@@ -706,7 +708,10 @@
|
|
|
706
708
|
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
707
709
|
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
708
710
|
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
709
|
-
|
|
711
|
+
CODE_SIGN_IDENTITY = "";
|
|
712
|
+
CODE_SIGNING_REQUIRED = NO;
|
|
713
|
+
CODE_SIGN_ENTITLEMENTS = "";
|
|
714
|
+
CODE_SIGNING_ALLOWED = NO;
|
|
710
715
|
COPY_PHASE_STRIP = NO;
|
|
711
716
|
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
|
712
717
|
ENABLE_NS_ASSERTIONS = NO;
|
package/package.json
CHANGED