11 lines
331 B
Bash
11 lines
331 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
# Used by Clojure to condition code and Gradle to make dependencies optional
|
||
|
sed -i -e '$aGOOGLE_FREE=1' .env.release
|
||
|
|
||
|
# remove react-native-notifications(uses google dependencies) and google-services.json for the fdroid-build
|
||
|
yarn remove react-native-notifications
|
||
|
rm android/app/google-services.json
|