| Jeff Gaston | 5097b4f | 2019-10-16 18:53:06 -0400 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | set -e | ||||
| 3 | |||||
| Jeff Gaston | 868c502 | 2020-06-16 17:32:18 -0400 | [diff] [blame] | 4 | echo "Starting $0 at $(date)" |
| 5 | |||||
| Owen Gray | a6247c3 | 2020-02-03 13:38:24 -0500 | [diff] [blame] | 6 | cd "$(dirname $0)" |
| Jeff Gaston | 5097b4f | 2019-10-16 18:53:06 -0400 | [diff] [blame] | 7 | |
| Jeff Gaston | dba484b | 2021-01-15 15:04:17 -0500 | [diff] [blame] | 8 | SNAPSHOT=true impl/build.sh \ |
| 9 | createArchive \ | ||||
| 10 | -Pandroidx.enableAffectedModuleDetection=false \ | ||||
| Leland Richardson | b1208d2 | 2021-04-06 11:30:17 -0700 | [diff] [blame^] | 11 | -Pandroidx.enableComposeCompilerMetrics=true \ |
| Jeff Gaston | f57d8fb | 2021-01-15 15:23:57 -0500 | [diff] [blame] | 12 | "$@" |
| Jeff Gaston | 868c502 | 2020-06-16 17:32:18 -0400 | [diff] [blame] | 13 | |
| 14 | echo "Completing $0 at $(date)" | ||||