intergrating zoom SDK to my app Fails

i started a new project on Android Studio 3.1.3
Build #AI-173.4819257, built on June 4, 2018
The target sdk of the project is SDK 27 and minimum is 19 SDK

i included commonlib.aar and mobilertc.aar into my project

when i sync with gradle files it finishes with no error but when i run the app i get several error, Failed to find the byte code for com/gson and another error failed to fing the byte code for com/bumptech/glide, when i include the gson and the glide library i get another error Failed to find byte code for us/zoom/thirdparty/login/facebook/FBAppAuthCallBack

how can i solve this…?

Now our sdk do not support to target sdk version to Android API 27( we only support to 25). Thanks.

apply plugin: 'com.android.application'

android {
 compileSdkVersion 25
 buildToolsVersion '27.0.3'

 defaultConfig {
 applicationId "us.zoom.sdkexample"
 minSdkVersion 14
 targetSdkVersion 25
 versionCode 1
 versionName "1.0"
 }

 buildTypes {
 release {
 minifyEnabled false
 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
 }
 }
}

dependencies {
 compile 'com.android.support:support-v4:25.3.1'
 compile 'com.android.support:recyclerview-v7:25.3.1'
 compile project(':commonlib')
 compile project(':mobilertc')
 //For share with dropbox
 //compile 'com.dropbox.core:dropbox-core-sdk:3.0.5'
 //compile 'com.squareup.okhttp3:okhttp:3.5.0'
}

buildscript {
 dependencies {
 classpath 'com.android.tools.build:gradle:3.1.3'
 }
 repositories {
 google()
 jcenter()
 }
}
allprojects {
 repositories {
 google()
 jcenter()
 maven { url 'https://jitpack.io' }
 }
}




My gradle file explains it all but still am getting Failed to find byte code for com/bumptech/glide/request/RequestListener
And i am only running the example app here

and i am using the latest release from github which was released 23 hours ago. Please Help Thanks.

The message is just a warning and will not cause any functions issues.

Failed to find byte code for com/bumptech/glide/request/RequestListener

After showing this error build fails. app cant be installed on the device