androidthings / sample-nativepio

Basic Peripheral I/O examples in C/C++ with Android Things
Apache License 2.0
48 stars 67 forks source link

Android Studio 3.2 can NOT parse project #5

Open TAMHAN opened 6 years ago

TAMHAN commented 6 years ago

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

}

}