xwords/xwords4/android/scripts/gen_gcmid.sh
2012-11-02 05:35:31 -07:00

16 lines
330 B
Bash
Executable file

#!/bin/sh
if [ -z "$GCM_SENDER_ID" ]; then
echo "GCM_SENDER_ID not in env"
exit 1
fi
cat <<EOF
// Auto-generated: DO NOT CHECK THIS IN until questions about
// obscuring the id are cleared up
package org.eehouse.android.xw4;
public class GCMConsts {
public static final String SENDER_ID = "${GCM_SENDER_ID}";
}
EOF