无法确定任务“:app:processDebugResources”的依赖项。
无法解决配置的所有任务依赖关系: app: dedegRuntimeClasspath。无法解决com.facebook.android: facebook登录:[5,6)。
所需:项目:应用程序
应用程序级/构建级
def localProperties = new Properties()
def localPropertiesFile = rootProject.file('local.properties')
if (localPropertiesFile.exists()) {
localPropertiesFile.withReader('UTF-8') { reader ->
localProperties.load(reader)
}
}
def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the
local.properties file.")
}
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
if (flutterVersionCode == null) {
flutterVersionCode = '1'
}
def flutterVersionName = localProperties.getProperty('flutter.versionName')
if (flutterVersionName == null) {
flutterVersionName = '1.0'
}
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
apply plugin: 'com.google.gms.google-services'
android {
compileSdkVersion 28
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
lintOptions {
disable 'InvalidPackage'
}
defaultConfig {
// TODO: Specify your own unique Application ID
(https://developer.android.com/studio/build/application-id.html).
applicationId "com.deligence.hookup4u2"
minSdkVersion 21
targetSdkVersion 28
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
// Use code below for production build
// For debug mode you need to comment above lines of code
// Issue with 'libflutter.so'
ndk {
abiFilters 'arm64-v8a', 'armeabi-v7a', 'x86'
}
}
buildTypes {
release {
// TODO: Add your own signing config for the release build.
// Signing with the debug keys for now, so `flutter run --release` works.
signingConfig signingConfigs.debug
}
}
}
flutter {
source '../..'
}
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
implementation 'com.google.firebase:firebase-analytics:17.2.2'
implementation 'com.facebook.android:facebook-login:[5,6)'
implementation 'com.google.firebase:firebase-messaging:20.1.6'
}
projectlevel/buildGradle
buildscript {
ext.kotlin_version = '1.3.50'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
classpath 'com.google.gms:google-services:4.3.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}
谷歌面临的问题。垃圾箱。com已关闭,但com的版本已关闭。脸谱网。android:facebook登录没有严格指定。
这[5,6)意味着它有版本范围Gradle声明版本和范围
>
搜索com的版本。脸谱网。android:facebook登录Maven搜索。我们有5点15分。十、
以最大可能的版本5.15.3限制您的传递依赖
编辑您的项目应用程序/build.gradle:
dependencies {
...
constraints {
implementation('com.facebook.android:facebook-login') {
version {
strictly '5.15.3'
}
}
}
}
当我在android studio中运行我的第一个flutter应用程序时,我收到了这个错误。我的模拟器互联网连接和飞行模式是关闭的。我看到了其他类似的问题,但没有一个像这个错误,他们没有帮助我。有人能帮我吗? 如果需要更多细节,请告诉我。谢谢。
当我开始模拟我的android手机和活动开发者模式以及USB调试时,我收到了这些消息,我尝试了一些方法,但没有成功。请在此处输入图像描述 在此处输入图像描述 在此处输入图像描述 在此处输入图像描述
失败:生成失败,出现异常。 出错原因:无法确定任务“:app:compiledebugjavawithjavac”的依赖项。 未能找到生成工具修订版29.0.2 在https://help.gradle.org获得更多帮助
因为Flatter\u math\u fork 获取:^4.6.1获取存储:2.0.3 dio:^4.0.4 dio\u http\u缓存:0.3.0 webview_flutter:^2.8.0flutter_html:^2.0.0url_launcher:^6.0.17 firebase\u消息:^11.2.4 cloud\u firestore:^3.1.5 firebase\u认证:^3.
项目文件夹非常完美。错误出现在visual studio、Flatter文件或其他文件中。 我知道有VisualStudio和Flatter的旧版本,但我的项目在这些版本中运行得非常好。错误出现在错误的visual studio更新中,我将其降级为以前使用的版本,但错误仍然存在 错误描述: 失败:生成失败,出现异常。 错误:无法确定任务“:app:compiledBugJavaWithJavaC”
我正在尝试开发一个具有多个页面的Flutter应用程序。我有一个SignInService,我试图注入在不同的页面使用get_it服务定位器。 服务定位器。飞奔 ervice.dart 当我登录时,firebaseUser变量正在该类中设置,并且该值不为null。 当我在像这样的另一个页面中使用它时,我得到一个空值。 E/flatter(20069):[ERROR:flatter/lib/ui/u