Open realgsong opened 4 years ago
Tried following command
find ./android/app/src -name '*.java' -type f -exec sed -i '' 's/com.test.app.all/com.test.app.dedicated/' {} \;
first empty string '' in sed command looks incorrect. It should be
find ./android/app/src -name '*.java' -type f -exec sed -i 's/com.test.app.all/com.test.app.dedicated/' {} \;
Having the same issue, it works on MacOS but not ubuntu/linux
I'm still seeing this issue 4 years later ðŸ˜
Tried following command
first empty string '' in sed command looks incorrect. It should be
Environments