Skip to content
This repository was archived by the owner on Jun 30, 2022. It is now read-only.
This repository was archived by the owner on Jun 30, 2022. It is now read-only.

Could not find com.android.tools:common:25.3.3 #12

@KalebMatthews

Description

@KalebMatthews

Android build gradle has issues with 2.3.3 (which is what com.android.tools.build:gradle:2.3.+ will resolve to). This need to be resolved by dropping to 2.3.0 or an acceptable version of the gradle that contains a proper version of com.android.tools:common.

Temp Workaround:

For those those that use local build simple replace com.android.tools.build:gradle:2.3.+ to com.android.tools.build:gradle:2.3.0.

For those that do not use local builds add the following to your app's build.gradle:

subprojects {project ->
    if (project.name.contains('module name, e.g. react-native-image-picker')) {
            buildscript {
                repositories {
                maven { url "https://dl.bintray.com/android/android-tools/"  }
            }    
        }
    }
}

This will override the current configuration for you. This is for those that can not modify the projects gradle during the build process.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions