Diligent Graphics
Diligent Graphics
Android build system is very poorly set up at the moment, but unfortunately we now have no bandwidth to improve it and any help would be greatly appreciated.
Command-line build will also enable running Android build on CI servers as right now it is the only platform that is skipped by CI
> Error:Could not find com.android.support.constraint:constraint-layout:1.0.1 Where is it specified? Can't find it in Gradle files or in the project generally. BTW, do you have the latest code? I recently made...
Yeah, I double checked the history and these were indeed removed recently https://github.com/DiligentGraphics/DiligentSamples/commit/847e1c33699bc46adc57799022272eeddf88a864
Thanks for looking into this. TBH, I have no idea what these errors mean. Looks like none of these attributes are ever specified by any of build files... Also, sometimes...
You are right. Android studio indeed suggests installing a number of components. Maybe if you install it and open the project, you will know what components are missing.
Do you get this error after removing `-DANDROID_STL=c++_static`? The error seems to be a compiler error, which shouldn't be related to c++ runtime library controlled by `DANDROID_STL`.
In Android Studio, the build succeeds with the following build settings: ``` cmake { arguments '-DANDROID_TOOLCHAIN=clang', '-DENABLE_TESTS=TRUE' } ``` I can't understand why it causes so many errors in a...
BTW, are you able to build the teapot sample from android ndk samples (which is [where I copied the settings from](https://github.com/googlesamples/android-ndk/blob/master/teapots/classic-teapot/build.gradle#L15))?
> gnustl_static is no longer supported. Please switch to either c++_shared > or c++_static. See > https://developer.android.com/ndk/guides/cpp-support.html for more > information. I do use c++_static, but you said it generates...