遇到这个问题的人都无法解决配置':react-native-fast-image:classpath'的所有工件,并且找不到com.android.tools.build:gradle:3.6.3?我试着打开项目结构,看到gradle插件工具是3.6.3,而gradle版本是5.4.6,但我不知道现在发生了什么
build.gradle文件:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
/*ext {
buildToolsVersion = "28.0.2"
minSdkVersion = 16
compileSdkVersion = 28
targetSdkVersion = 27
supportLibVersion = "28.0.0"
}*/
repositories {
jcenter()
google()
maven {
url 'https://maven.google.com/'
name 'Google'
}
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
classpath 'com.google.gms:google-services:4.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
configurations.all {
resolutionStrategy.eachDependency { details ->
def requested = details.requested
if (requested.group == 'com.google.android.gms') {
details.useVersion '12.0.1'
}
if (requested.group == 'com.google.firebase') {
details.useVersion '12.0.1'
}
}
}
mavenLocal()
mavenCentral()
google()
jcenter()
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'
}
}
}
subprojects {
project.configurations.all {
resolutionStrategy.eachDependency { details ->
if (details.requested.group == 'com.android.support'
&& !details.requested.name.contains('multidex') ) {
details.useVersion "27.1.1"
}
}
}
}
ext {
buildToolsVersion = "28.0.3"
minSdkVersion = 16
compileSdkVersion = 28
targetSdkVersion = 28
supportLibVersion = "28.0.0"
googlePlayServicesVersion = "15.0.1"
androidMapsUtilsVersion = "0.5+"
}
project.ext {
excludeAppGlideModule = true
}
/*
task wrapper(type: Wrapper) {
gradleVersion = '4.7'
distributionUrl = distributionUrl.replace("bin", "all")
}
*/
我在build.gradle
中添加了google()
来解决这个问题:
buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.6.3'
}
}
allprojects {
repositories {
jcenter()
google()
}
}
我已经完成了所有的设置为Android和iOS反应原生从下面的链接在我的mac mashine。 项目已成功创建。但当我试图在终端中使用以下命令运行Android项目时: 我得到了下面的错误 > 问题:配置项目“:app”时出现问题。 SDK目录“/usr/local/opt/android SDK”不存在。 尝试:使用--stacktrace选项运行以获取堆栈跟踪。使用--info或--debu
我的build.gradle文件如下: 正如您可以从注释出的行中看到的,我已经尝试了基于以前答案的多种组合 每个错误消息的公分母是 我也尝试过cd Android/&&gradlew clean,我也尝试过将gradle版本改为Classpath。结果都一样。 有什么建议吗?
我正在我的react本机应用程序中添加图像上传。我通过npm安装得很好,也链接得很好 现在,每次我试图运行项目时,我都会得到以下错误
Kotlin:1.3.41 Groovy:2.5.4 Ant:Apache Ant(TM)版本1.9.14编译于2019年3月12日JVM:1.8.0_60(Oracle Corporation 25.60-B23)OS:Windows 10 10.0 amd64 C:\users\Michael> 由于以下原因,无法发布整个日志:您需要至少10个信誉才能发布超过8个链接。
每次我重新打开项目和模拟器时,我都必须在命令提示符中运行和吗? 谢谢。