You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm experiencing a very strange issue nobody else can reproduce...I wanted to change bunch of previously define values for existing keys. All changes were applied successfully however there is one value which is always taken from previous .env definition. No matter what I do it still takes previous value.
Prerequisites
Xcode 13.x (didn't work for Xcode 12.x either)
CocoaPods v 1.11.x (didn't work for 1.10.x either)
If I remove this key from .env file and install pods then script prompts for giving a value. Calling bundle exec pod keys prints nothing. So far I use Keys.m file generated by a second developer. By "using" I mean I copy-paste content of his file to my file after every pod install what is not very efficient way of work.
This issue drives me crazy. Can someone have other idea what to do?
The text was updated successfully, but these errors were encountered:
PatrykKaczmarek
changed the title
Obsolete key's value in generate file
Obsolete key's value in generated file
Oct 25, 2021
@ashfurrow No, the value isn't stored in the Keychain. I was looking for it and I did even remove all projects's entries from the keychain - I mean all projects I have, not only this one particularly which I currently work on.
Wow, that is bananas. Sorry you're hitting that error – I'm not sure what the cause could be. The steps you've outlined are exhaustive and should definitely have removed this. I can also recommend a reboot (if you haven't yet) and moving the code into a new directory (cocoapods-keys uses the directory of the Podfile as a key lookup).
I'm experiencing a very strange issue nobody else can reproduce...I wanted to change bunch of previously define values for existing keys. All changes were applied successfully however there is one value which is always taken from previous
.env
definition. No matter what I do it still takes previous value.Prerequisites
Podfile:
.env file
Example
Before change:
After change:
What I did:
pod deintegrate
~/.cocoapods/keys
If I remove this key from
.env
file and install pods then script prompts for giving a value. Callingbundle exec pod keys
prints nothing. So far I useKeys.m
file generated by a second developer. By "using" I mean I copy-paste content of his file to my file after everypod install
what is not very efficient way of work.This issue drives me crazy. Can someone have other idea what to do?
The text was updated successfully, but these errors were encountered: