-
-
Save draekko/4019f0342553b6c0cbeca1d185245dd1 to your computer and use it in GitHub Desktop.
Simple AndroidX Migration Script (updated to work with Linux and avoid xarg argument list too long)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# I've found that the "Migrate to AndroidX" converter in Android Studio doesn't work very | |
# well, so I wrote my own script to do the simple job of converting package names. | |
# | |
# You can download a CSV of package names here: https://developer.android.com/topic/libraries/support-library/downloads/androidx-class-mapping.csv | |
# | |
# It'll run faster on a clean build because then there are fewer files to scan over. | |
# | |
# Uses `gsed` because I'm on a Mac. Can easily replace with `sed` if you don't have `gsed`. | |
# | |
# This isn't perfect; it won't find every conversion issue. You break it you buy it. Viewer discretion is advised. | |
PROJECT_DIR=/path/to/project | |
MAPPING_FILE=$PROJECT_DIR/androidx-class-mapping.csv | |
replace="" | |
while IFS=, read -r from to | |
do | |
replace+="s/$from/$to/g\n" | |
done <<< "$(cat $MAPPING_FILE)" | |
echo -e "$replace" > sed.convert | |
find $PROJECT_DIR \( -name "*.kt" -o -name "*.java" -o -name "*.xml" \) -type f -not -path '*/\.git*' -print0 | xargs -0 sed -i -f sed.convert | |
rm sed.convert | |
exit 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment