Apr 8, 2021
Additional quick find and replace for anyone who works under any linux env or wsl. In your root project directory run:
find . -name "*.kt" -type f -exec sed -i "s/import kotlinx.android.parcel.Parcelize/import kotlinx.parcelize.Parcelize/g" {} \;
More info about "find" https://linuxize.com/post/how-to-find-files-in-linux-using-the-command-line/