1#!/usr/bin/env bash
2
3echo " ☛  Ensuring Android project is setup..."
4
5if [ -d "./node_modules" ]; then
6    echo " ✅ Node modules installed"
7else
8    echo " ⚠️  Cannot find node modules for this project, installing..."
9    yarn
10fi
11
12../../tools/bin/expotools.js android-generate-dynamic-macros --configuration $1 --bare
13echo " ✅ Generete dynamic macros"
14