sample-nativepio icon indicating copy to clipboard operation
sample-nativepio copied to clipboard

Android Studio 3.2 can NOT parse project

Open TAMHAN opened this issue 7 years ago • 0 comments

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()

}

}

TAMHAN avatar Aug 15 '18 19:08 TAMHAN