The Android runtime provided with the build 292 update patch has been updated to work with Gradle, it doesn't need Ant anymore, i.e. it will work with the latest Android Studio without you to have to patch it with Ant files, unlike the previous version.
What do you need to install
+ You should install the latest version of Please login to see this link. and then get the Android SDK pathname from the Android Studio settings screen as shown in Please login to see this link. and paste it in the Android SDK Pathname box in the preferences of Fusion (General tab).
+ Android Studio installs its own version of Java, usually in C:\Program Files\Android\Android Studio\jbr (or jre for old versions). Verify this directory exists on your machine and contains a bin/java.exe file), and use it as "Java SDK directory" in the preferences of Fusion. EDIT: in theory, recent versions of Fusion now automatically detect this directory.
Possible errors the first time you build an application and/or you use a new API
+ Gradle automatically downloads the libraries and build tools it needs, however it doesn't ask you for accepting licenses. If you get an error message that says "License for package XXXXX not accepted.", do this:
1. open an explorer window and go to the Android SDK folder (usually C:\Users\YourName\AppData\Local\Android\Sdk)
2. open the tools/bin sub-directory
3. open a command prompt window in this directory and type "sdkmanager --licenses" (or sdkmanager --update for old versions of the SDK), this will allow you to review and accept the licenses of the downloaded files. You can also simply open the SDK Manager and update the build API/Tools, this may work.
Note: the directory structure of the source files in the Android zip files for Gradle is different. If you use 3rd party extensions that aren't updated, Fusion will try to automatically convert it to Gradle. This works with simple extensions, but could fail for more complex ones. In this case, you'll have to wait for the developer to release an update.
For example if you got Android extensions from Click Store, check if there are new versions of these extensions, compatible with Gradle. You'll have to do this for example if you use GPG extensions and you get a "xxx is not a zip file" error message while building your application.
+ AdMob: another change in the build 292 is that the AdMob object has now 2 separate App IDs for Android and iOS. The first time you build an application with the build 292 make sure the Android App ID in the settings of the AdMob object is set to the correct value, otherwise your app will crash.
+ Build API: use preferably build API 28+ for building your applications.