forked from androidx/androidx
-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Speedup with newest org.jetbrains.gradle.apple.applePlugin Fix gradle problems on Mac with Intel CPU Add possibility to run on real iOS device
- Loading branch information
1 parent
f56a88b
commit 8f38e6e
Showing
5 changed files
with
107 additions
and
51 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/bash | ||
set -e | ||
cd "$(dirname "$0")" | ||
|
||
echo "--------------------------------------------------------" | ||
echo "This command will remove those files added to .gitignore" | ||
git clean -ndX | ||
read -p "Do you want to remove this files? (y/n) " yn | ||
|
||
case $yn in | ||
y ) git clean -fdX;; | ||
n ) exit;; | ||
* ) exit 1;; | ||
esac |
This file was deleted.
Oops, something went wrong.
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
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