Skip to content Skip to sidebar Skip to footer

Google-api-client-android And Firestore Is Giving Dexarchivemergerexception Build Error

I'm developing an app where I would use google sheets/photos and also firestore. The error started coming when I add firestore dependency in gradle. If I remove firestore it is bui

Solution 1:

Tried this and worked - Error: Program type already present: com.google.common.annotations.Beta

configurations {
        all*.exclude module: 'guava-jdk5'
    }

after adding this encountered issue - Error: Cannot fit requested classes in a single dex file For this, I solved by doing below: Error: Cannot fit requested classes in a single dex file (# methods: 67593 > 65536)

Post a Comment for "Google-api-client-android And Firestore Is Giving Dexarchivemergerexception Build Error"