You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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()
}
}
The text was updated successfully, but these errors were encountered:
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()
}
The text was updated successfully, but these errors were encountered: