Alejandro G. Carlstein Ramos Mejia

Results 28 comments of Alejandro G. Carlstein Ramos Mejia

Tried changing to `implementation project(':react-native-aes-crypto')` but getting: ``` Execution failed for task ':react-native-aes-crypto:compileDebugJavaWithJavac'. > Could not resolve all files for configuration ':react-native-aes-crypto:androidJdkImage'. > Failed to transform core-for-system-modules.jar to match attributes...

I'm going to split this file in different one for sanity sake: Lets start with a script that will detect all the components required: **check_ios_cross_compile_requirements.sh** ``` #!/usr/bin/env bash # filepath:...

Updated the code to try to install the components: ```bash #!/usr/bin/env bash # filepath: check_ios_cross_compile_requirements.sh set -e REQUIRED_CMDS=( clang git xar pbzx automake autogen libtool xz cpio fusermount ) MISSING=0...

Updated the code to try to install the components. Made it to be the stable version 1.0.0. Let me know if I'm missing something: ```bash #!/usr/bin/env bash # filepath: check_ios_cross_compile_requirements.sh...

Next, the configuration file that will try to do the steps of the documentation **configuration.sh** ```bash #!/usr/bin/env bash # version: 0.0.1 # description: Automate SDK extraction, toolchain build, and environment...

Updated the `configure.sh`: ```bash #!/usr/bin/env bash # version: 0.0.5 # description: Automate SDK extraction, toolchain build, and environment setup for Godot iOS cross-compiling. set -e AUTO_INSTALL=0 usage() { echo "Usage:...

Updated `configure.sh` to create the file `build_ios_godot.sh`, so the user can do one step less: ```bash #!/usr/bin/env bash # version: 0.0.6 # description: Automate SDK extraction, toolchain build, and environment...