google / blockly-android

Blockly for Android
Apache License 2.0
672 stars 209 forks source link

Broken build after merging #757 #768

Closed AnmAtAnm closed 5 years ago

AnmAtAnm commented 5 years ago

After merging #757, I'm getting the following error when building develop:

FAILURE: Build failed with an exception.

* What went wrong:
Task 'assembleDebug' not found in project ':blocklydemo'.

* Try:
Run gradle tasks to get a list of available tasks. Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 0s
TheBrokenRail commented 5 years ago

That's because assembleDebug is not a task anymore, you have to do assembleFullDebug or assembleLiteDebug.

AnmAtAnm commented 5 years ago

BlocklyDemo should be configured to automatically use the full version and should be buildable out of the box/repo using Android Studio to make it as easy as possible for developers to peek, hack, and explore.

Do you know what needs to change?

TheBrokenRail commented 5 years ago

It does automatically use the full version you just have to build it with assembleFullDebug, assembleLiteDebug doesn't work on blocklydemo.