After installing Android Studio 3.0.0 i got the following Warnings:
Warning:Linking two modules of different data layouts: 'C:\Users\name\AppData\Local\Android\Sdk\build-tools\27.0.0\renderscript\lib\bc\armeabi-v7a\libclcore.bc' is 'e-m:e-p:32:32-i64:64-v128:64:128-a:0:32-n32-S64' whereas 'C:\Users\path\debug\raw\saturation.bc' is 'e-p:32:32-i64:64-v128:64:128-n32-S64'
Warning:Linking two modules of different target triples: C:\Users\name\AppData\Local\Android\Sdk\build-tools\27.0.0\renderscript\lib\bc\mips\libclcore.bc' is 'armv7--linux-android' whereas 'C:\Users\name\path\debug\raw\crossfade.bc' is 'armv7-none-linux-gnueabi'
Here my current defaultConfig:
defaultConfig {
minSdkVersion 15
targetSdkVersion 22
versionCode 374
//necessary for renderscript support
renderscriptTargetApi 18
renderscriptSupportModeEnabled true
vectorDrawables.useSupportLibrary = true
//to avoid that dex file reached to its maximum method count
multiDexEnabled true
}
Any ideas how to fix these? Thank you in advance!