question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Integrating to project fails with ':app:transformClassesWithMultidexlistForDebug'

See original GitHub issue

I’m building a project, which already have a Firebase instance installed, specifically using library react-native-firebase, which requires me to add firebase-core.

I am not sure if it is the root cause of not being able to properly run the app on Android, but it’s the only lead I have right now.

I have build log below: BUILD LOG

android/build.gradle ANDROID GRADLE android/app/build.gradle APP GRADLE

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:7 (2 by maintainers)

github_iconTop GitHub Comments

7reactions
jojonartecommented, Sep 18, 2018

@danwoodbury Hey here was what I did. I’ve reinstalled tipsi-stripe. I’ve set up my android/build.gradle like below:

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        maven {
            url 'https://maven.google.com/'
            name 'Google'
        }
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.1.2'
        classpath 'com.google.gms:google-services:3.2.1'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        maven {
            url "https://jitpack.io"
        }
        maven {
            url "https://maven.google.com"
            name "Google"
        }
        mavenLocal()
        jcenter()
        maven {
            // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
            url "$rootDir/../node_modules/react-native/android"
        }
    }
}

ext {
    buildToolsVersion = "27.0.3"
    minSdkVersion = 16
    compileSdkVersion = 27
    targetSdkVersion = 27
    supportLibVersion = "26.1.0"
    googlePlayServicesVersion = "15.0.0"
    firebaseVersion = "15.0.2"
}

Then instead of compile used implementation project(':tipsi-stripe')

0reactions
jojonartecommented, Jan 7, 2019

@kaloncheung124 I must have double clicked. Should be closed. I’m glad it worked for you.

Read more comments on GitHub >

github_iconTop Results From Across the Web

android - Error:Execution failed for task ':app ... - Stack Overflow
I try to build project and get this error: Error:Execution failed for task ':app:transformClassesWithMultidexlistForDebug'. java.io.
Read more >
Message "BAdI not implemented to set the project integration ...
You try to import an XML file or an MS Project file to Project Management. The import fails. You notice message "BAdI not...
Read more >
EPM Planning Projects Rules for Integration with Project ...
Exports all the projects that are in Approved (Project Status) and Internal or Ready (Project Integration Status) for integration with Project Management. This ......
Read more >
What Is Project Integration Management? - Wrike
Integrated project management ensures projects are not managed in isolation. It takes into account not only how aspects of your project relate to...
Read more >
How to integrate project management into your organization
Some 84% of Project Management Offices fail within four years because of the disconnect with the business. Solid integration is the solution.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found