美文网首页
[React-Native 0.56.0]Android Cou

[React-Native 0.56.0]Android Cou

作者: laznrbfe | 来源:发表于2018-07-18 11:51 被阅读102次

Android Studio 2.3.3 报错提示

Error: Could not find support-annotations.jar (com.android.support:support-annotations:26.1.0)

解决

/android/build.gradle

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

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

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

ext {
    buildToolsVersion = "26.0.3"
    minSdkVersion = 16
    compileSdkVersion = 26
    targetSdkVersion = 26
    supportLibVersion = "26.1.0"
}

相关文章

网友评论

      本文标题:[React-Native 0.56.0]Android Cou

      本文链接:https://www.haomeiwen.com/subject/jxropftx.html