gpt4 book ai didi

flutter - 任务 ':app:lintVitalRelease' 执行失败。 flutter

转载 作者:行者123 更新时间:2023-12-03 02:40:48 27 4
gpt4 key购买 nike

为什么我会收到这些错误 我尝试发布 apk
我运行“flutter build apk --release”
任务“:app:lintVitalRelease”的执行失败。
:app:lintVitalRelease
配置根项目“android_intent”时出现问题。

  • What went wrong: A problem occurred configuring root project 'android_intent'.

SDK location not found. Define location with sdk.dir in the local.properties file or with an ANDROID_HOME environment variable.



android/app/build.gradle
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"

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.example.deleviry"

minSdkVersion 21
targetSdkVersion 28
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
multiDexEnabled true
}

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 'com.google.firebase:firebase-core:17.2.0'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" }

apply plugin: 'com.google.gms.google-services'
android/build.gradle
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 }

最佳答案

升级 gradle 构建工具似乎会破坏一些 lint。
要解决此问题,您可以:

If your error says debug/libs.jar, build --debug then --release.
If your error says profile/libs.jar, build --profile then --release.


来自 https://github.com/flutter/flutter/issues/58247#issuecomment-636500680
如果上述方法不起作用,您可以禁用检查。
添加 checkReleaseBuilds falselintOptions android/app/build.gradle 文件。
android {
...
lintOptions {
disable 'InvalidPackage'
checkReleaseBuilds false //<- add this line
}
}

关于flutter - 任务 ':app:lintVitalRelease' 执行失败。 flutter ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62548438/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com