Bundling for Android with BOB - liveupate? (SOLVED)

Hello,
This is how I used to build using BOB:

java -jar ../bob.jar --archive --verbose --platform armv7-android --variant debug build bundle

Now I’m adding the Live Update feature. It works well if I use Project > Bundle > Android. I can see the ZIP archive generated correctly.

But I need to do it with the command line:

java -jar ../bob.jar --archive --verbose --platform armv7-android --liveupdate yes --variant debug build bundle

I can’t find the ZIP archive created? Am I missing a step?

2 Likes

With the “build” command, you’ll also want to add the “–archive” flag.

java -jar ../bob.jar --archive --verbose --platform armv7-android --liveupdate yes --variant debug build --archive bundle

1 Like

That solved it! Thanks!

2 Likes