Failed linking references

I initialized the Zoom SDK of version - v4.6.21666.0429.
Then I tried to run the application I’m facing build error which is Android resource linking failed

Here is the exact error log :

AAPT: error: resource style/TextAppearance.Design.Tab (aka com.zen.demozoom:style/TextAppearance.Design.Tab) not found.
error: resource style/Theme.Design.Light.BottomSheetDialog (aka com.zen.demozoom:style/Theme.Design.Light.BottomSheetDialog) not found.
error: failed linking references.

and here are my dependencies:

dependencies {
    implementation 'androidx.multidex:multidex:2.0.1'
    implementation fileTree(dir: "libs", include: ["*.jar"])
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation project(path: ':mobilertc')
    implementation project(path: ':commonlib')
    testImplementation 'junit:junit:4.13'
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'

}

My application does not have anything except Zoom SDK

It got resolved by adding this dependency

implementation 'com.google.android.material:material:1.0.0-rc01'

Hi @suhassrikar77,

Thanks for the post and thanks for the follow up reply. Glad to hear that the problem was resolved. Let me know if any other questions.

Thanks!

1 Like