I had the same issue with the following library versions:
Xcode 6.3 Cocoapods 0.37.2 Finally I solved this issue by the following steps:
- First step:
Open Xcode Click Window (Menu Bar)
| # Generate a unique private key (KEY) | |
| sudo openssl genrsa -out mydomain.key 2048 | |
| # Generating a Certificate Signing Request (CSR) | |
| sudo openssl req -new -key mydomain.key -out mydomain.csr | |
| # Creating a Self-Signed Certificate (CRT) | |
| openssl x509 -req -days 365 -in mydomain.csr -signkey mydomain.key -out mydomain.crt | |
| # Append KEY and CRT to mydomain.pem |
| const input = [ | |
| [1, 0, 0, 0, 1], | |
| [1, 1, 0, 0, 0], | |
| [0, 0, 0, 1, 0], | |
| [0, 1, 0, 0, 1], | |
| [0, 0, 1, 1, 1], | |
| ] | |
| matrixSize = input.length - 1 |
| const { exec } = require("child_process"); | |
| exec("pwd & ls -la", (error, stdout, stderr) => { | |
| if (error) { | |
| console.log(`error: ${error.message}`); | |
| return; | |
| } | |
| if (stderr) { | |
| console.log(`stderr: ${stderr}`); | |
| return; |