You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
0 B
8 lines
0 B
3 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
MANIFEST_FILE=android/AndroidManifest.xml
|
||
|
|
||
|
echo "Adjusting package name for daily build"
|
||
|
QGC_PKG_NAME="org.mavlink.qgroundcontrolbeta"
|
||
|
sed -i -e 's/package *= *"[^"]*"/package="'$QGC_PKG_NAME'"/' $MANIFEST_FILE
|