Hello Folks,
just wanted to report that Android Studio 3.2 does NOT like this project. In the first step, it complains about MIPS support missing - this is fixed by manually updating the version of the Gradle plugin:
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.0-beta05'
After that, allow Android Studio to perform missing updates to the project.
Next, add the missing repo to allprojects:
allprojects {
repositories {
jcenter()
google()
Hello Folks, just wanted to report that Android Studio 3.2 does NOT like this project. In the first step, it complains about MIPS support missing - this is fixed by manually updating the version of the Gradle plugin: buildscript { repositories { google() jcenter() } dependencies { classpath 'com.android.tools.build:gradle:3.2.0-beta05'
After that, allow Android Studio to perform missing updates to the project.
Next, add the missing repo to allprojects: allprojects { repositories { jcenter() google()
}