I have the following problem
I have a project1 that use quickblox sdk as following
dependencies {
compile "com.quickblox:quickblox-android-sdk-messages:3.3.1@aar"
compile "com.quickblox:quickblox-android-sdk-content:3.3.1@aar"
compile "com.quickblox:quickblox-android-sdk-core:3.3.1@aar"
compile"com.quickblox:quickblox-android-sdk-chat:3.3.1@aar"
compile("com.quickblox:quickblox-android-sdk-chat:3.3.1@aar") {
transitive=true
}
}
Then I have used this project1 as library dependancies in project2
Now I am getting thes error failed to resolve dependencies
I am using other sdks and all of them are working in the children project without any problem but I do not know why quickblox is not working
Can anyone help please ?