This file contains hidden or 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
java -jar AndroidUnusedResourcesX.X.X.jar | grep 'string :\| /your_path_to_values/strings.xml' |
This file contains hidden or 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
#!/bin/bash | |
# Prefix the apk file name of the previous version with "a" (e.g myAppV1.apk => amyAppV1.apk) | |
# Prefix the apk file name of the current version with "b" (e.g myAppV2.apk => bmyAppV2.apk) | |
# Run this script un a folder holding the apk of your current version and the previous version. | |
APP_PACKAGE="whatever.your.app.package.is" | |
TEST_PACKAGE="whatever.your.test.package.is" | |
echo -en "###############################\n\r" |
This file contains hidden or 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
Show hidden characters
{ | |
"draw_white_space": "all" | |
} |
This file contains hidden or 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
InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE); | |
imm.hideSoftInputFromWindow(myEditText.getWindowToken(), 0); |