4 lines
153 B
Bash
4 lines
153 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
rm androidx-api.txt; find ../../../frameworks/support/ -name current.txt | grep /api/ | grep -v /ktx/ | xargs cat>>androidx-api.txt
|
||
|
|
|