GithubHelp home page GithubHelp logo

Comments (2)

jagataess avatar jagataess commented on August 23, 2024 1

Need to change all the imports from android support library to androidx library. Was facing the same issue, but changing all the android support library imports to androidx library solved the problem.
But first, you need to mention all the required libraries in your dependencies block in app/build.gradle file like this-
implementation('androidx.appcompat:appcompat:1.4.0') implementation('androidx.legacy:legacy-support-v4:1.0.0') implementation('androidx.annotation:annotation:1.4.0')

from react-native-boundary.

eddieowens avatar eddieowens commented on August 23, 2024

It seems like you need to force the versions within your android/build.gradle file. You can do that by adding

ext {
  compileSdkVersion = 27
  buildToolsVersion = "27.0.3"
  targetSdkVersion = 26
  minSdkVersion = 16
  supportLibVersion = "27.1.1"
  googlePlayServicesVersion = "11+"
}

To the file, then reference it within your android/app/build.gradle like so,

android {
    compileSdkVersion rootProject.ext.compileSdkVersion
    buildToolsVersion rootProject.ext.buildToolsVersion
    ...
    defaultConfig {
        ...
        minSdkVersion rootProject.ext.minSdkVersion
        targetSdkVersion rootProject.ext.targetSdkVersion
        ...
    }
dependencies {
    ...
    compile "com.android.support:appcompat-v7:$rootProject.supportLibVersion"
    ...
}

If that doesn't work, then try to search around for how to force versions in Android. Hope this helps!

from react-native-boundary.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.