Setting up .env Arkana

Jerry PM
2 min readDec 5, 2022

--

This setting in Mac OS

My team changed from cocoapod-key to Arkana, this flow maybe will help you. If you don't set it up error result will be like this, your project must be using Swift Package Manager or CocoaPods. pod arkana https://github.com/rogerluan/arkana.

[!] No podspec found for `ArkanaKeys` in `./Tooling/Arkana/dependencies/ArkanaKeys`

Source: Author

Install Arkana in terminal

I used the alternative gem install.

$gem install arkana

Check If already install

For check, if the keys are registered or not, my friend said you can run this “printenv” in the terminal.

$printenv

Export keys

When exporting keys, it can be multiple keys in terminal.

export appleAppID=xx8x8xx207
export crispDevWebsiteID=xxxxxx-xxxx-43a1-xxxx-xxxdxxxdxxx
.
.
.

After export, you can check again using “$printenv”

Bash Profile

If don’t work used “ — ” you can use “ _ ”.

$source ~/.bash-profile

or

$source ~/.bash_profile

And then you can “ pod install “ for the finished install Arkana

Source: Author

--

--