mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-09 05:24:44 +01:00
50238bea3e
Now works to register as I'm using the right id.
16 lines
333 B
Bash
Executable file
16 lines
333 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.xw4gcm;
|
|
|
|
public class GCMConsts {
|
|
public static final String SENDER_ID = "${GCM_SENDER_ID}";
|
|
}
|
|
EOF
|