Android AppCompat-v7 and Firestore gradle conflict











up vote
1
down vote

favorite












So I have the following gradle entry:
enter image description here



If I remove the firestore-part, it syncs just fine.



What am I missing?



[EDIT] This is what the error says:
enter image description here










share|improve this question
























  • What does the error say?
    – Alex Mamo
    Nov 8 at 16:58










  • @AlexMamo: edited the question
    – Ilonpilaaja
    Nov 8 at 17:08










  • Have you tried to add implementation 'com.android.support:animated-vector-drawable:28.0.0' and implementation 'com.android.support:support-media-compat:28.0.0'?
    – Alex Mamo
    Nov 8 at 17:17

















up vote
1
down vote

favorite












So I have the following gradle entry:
enter image description here



If I remove the firestore-part, it syncs just fine.



What am I missing?



[EDIT] This is what the error says:
enter image description here










share|improve this question
























  • What does the error say?
    – Alex Mamo
    Nov 8 at 16:58










  • @AlexMamo: edited the question
    – Ilonpilaaja
    Nov 8 at 17:08










  • Have you tried to add implementation 'com.android.support:animated-vector-drawable:28.0.0' and implementation 'com.android.support:support-media-compat:28.0.0'?
    – Alex Mamo
    Nov 8 at 17:17















up vote
1
down vote

favorite









up vote
1
down vote

favorite











So I have the following gradle entry:
enter image description here



If I remove the firestore-part, it syncs just fine.



What am I missing?



[EDIT] This is what the error says:
enter image description here










share|improve this question















So I have the following gradle entry:
enter image description here



If I remove the firestore-part, it syncs just fine.



What am I missing?



[EDIT] This is what the error says:
enter image description here







android firebase android-gradle google-cloud-firestore






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 9 at 8:40









Alex Mamo

36.1k62354




36.1k62354










asked Nov 8 at 16:57









Ilonpilaaja

317214




317214












  • What does the error say?
    – Alex Mamo
    Nov 8 at 16:58










  • @AlexMamo: edited the question
    – Ilonpilaaja
    Nov 8 at 17:08










  • Have you tried to add implementation 'com.android.support:animated-vector-drawable:28.0.0' and implementation 'com.android.support:support-media-compat:28.0.0'?
    – Alex Mamo
    Nov 8 at 17:17




















  • What does the error say?
    – Alex Mamo
    Nov 8 at 16:58










  • @AlexMamo: edited the question
    – Ilonpilaaja
    Nov 8 at 17:08










  • Have you tried to add implementation 'com.android.support:animated-vector-drawable:28.0.0' and implementation 'com.android.support:support-media-compat:28.0.0'?
    – Alex Mamo
    Nov 8 at 17:17


















What does the error say?
– Alex Mamo
Nov 8 at 16:58




What does the error say?
– Alex Mamo
Nov 8 at 16:58












@AlexMamo: edited the question
– Ilonpilaaja
Nov 8 at 17:08




@AlexMamo: edited the question
– Ilonpilaaja
Nov 8 at 17:08












Have you tried to add implementation 'com.android.support:animated-vector-drawable:28.0.0' and implementation 'com.android.support:support-media-compat:28.0.0'?
– Alex Mamo
Nov 8 at 17:17






Have you tried to add implementation 'com.android.support:animated-vector-drawable:28.0.0' and implementation 'com.android.support:support-media-compat:28.0.0'?
– Alex Mamo
Nov 8 at 17:17














1 Answer
1






active

oldest

votes

















up vote
1
down vote



accepted










This is an warning because Firebase still use old version of dependency. Simply add this dependencies the warning will be removed.



implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support:design:28.0.0'
implementation 'com.android.support:support-media-compat:28.0.0'
implementation 'com.android.support:animated-vector-drawable:28.0.0'





share|improve this answer





















    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














     

    draft saved


    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53212592%2fandroid-appcompat-v7-and-firestore-gradle-conflict%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    1
    down vote



    accepted










    This is an warning because Firebase still use old version of dependency. Simply add this dependencies the warning will be removed.



    implementation 'com.android.support:support-v4:28.0.0'
    implementation 'com.android.support:design:28.0.0'
    implementation 'com.android.support:support-media-compat:28.0.0'
    implementation 'com.android.support:animated-vector-drawable:28.0.0'





    share|improve this answer

























      up vote
      1
      down vote



      accepted










      This is an warning because Firebase still use old version of dependency. Simply add this dependencies the warning will be removed.



      implementation 'com.android.support:support-v4:28.0.0'
      implementation 'com.android.support:design:28.0.0'
      implementation 'com.android.support:support-media-compat:28.0.0'
      implementation 'com.android.support:animated-vector-drawable:28.0.0'





      share|improve this answer























        up vote
        1
        down vote



        accepted







        up vote
        1
        down vote



        accepted






        This is an warning because Firebase still use old version of dependency. Simply add this dependencies the warning will be removed.



        implementation 'com.android.support:support-v4:28.0.0'
        implementation 'com.android.support:design:28.0.0'
        implementation 'com.android.support:support-media-compat:28.0.0'
        implementation 'com.android.support:animated-vector-drawable:28.0.0'





        share|improve this answer












        This is an warning because Firebase still use old version of dependency. Simply add this dependencies the warning will be removed.



        implementation 'com.android.support:support-v4:28.0.0'
        implementation 'com.android.support:design:28.0.0'
        implementation 'com.android.support:support-media-compat:28.0.0'
        implementation 'com.android.support:animated-vector-drawable:28.0.0'






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 8 at 17:16









        Faysal Ahmed

        3,37041129




        3,37041129






























             

            draft saved


            draft discarded



















































             


            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53212592%2fandroid-appcompat-v7-and-firestore-gradle-conflict%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Schultheiß

            Liste der Kulturdenkmale in Wilsdruff

            Android Play Services Check