nitaliano / react-native-mapbox-gl

A Mapbox GL react native module for creating custom maps
Other
2.16k stars 697 forks source link

[iOS] Code Signing Issue on Distribute App #1463

Closed fantasywind closed 5 years ago

fantasywind commented 5 years ago

Running on development mode is normally (Simulator and Real Device). But after archiving distribute to app store, always showing the code sign error on Mapbox.framework.

Debug:

Build Phase Script (Already set)

"${BUILT_PRODUCTS_DIR}/${FRAMEWORKS_FOLDER_PATH}/Mapbox.framework/strip-frameworks.sh"

Archive Log:

screen shot 2019-01-07 at 00 03 15

Seems SDK signing script issue, tried to replace

for file in $(find . -type f -perm +111); do

with

for file in $(find . -type f -perm 111); do

But still not working after the find invalid message missing.

fantasywind commented 5 years ago

It fixed if replace the script into

for file in $(find . -type f); do

sign for each files

ansarikhurshid786 commented 4 years ago

can you post steps because i coudnt find script info

systemlevel commented 4 years ago

Hey guys, this repo is no longer officially maintained. Head on over here https://github.com/react-native-mapbox-gl/maps and join the new club.