Malformed\uxxxx 编码。”-6ren"> Malformed\uxxxx 编码。”-构建文件中有错误。我尝试了一切,但没有任何效果收到此错误FAILURE:构建失败并出现异常。 在哪里:构建文件 'D:\Flutter App\covid19\android\app\build.gr-6ren">
gpt4 book ai didi

android - 如何解决 flutter 中的 build.gradle 错误。如何解决此错误 "A problem occurred evaluating project ' :app'. > Malformed\uxxxx 编码。”

转载 作者:行者123 更新时间:2023-12-04 14:58:24 26 4
gpt4 key购买 nike

构建文件中有错误。我尝试了一切,但没有任何效果收到此错误FAILURE:构建失败并出现异常。

  • 在哪里:构建文件 'D:\Flutter App\covid19\android\app\build.gradle' 行:31

  • 出了什么问题:评估项目 ':app' 时出现问题。

Malformed \uxxxx encoding.

  • 试试:使用 --stacktrace 选项运行以获取堆栈跟踪。使用 --info 或 --debug 选项运行以获得更多日志输出。运行 --scan 以获得完整的见解。

  • https://help.gradle.org 获得更多帮助

在 6 秒内构建失败正在运行 Gradle 任务“assembleRelease”...运行 Gradle 任务 'assembleRelease'... 完成 7.4 秒Gradle 任务 assembleRelease 失败,退出代码为 1

android 文件夹中的build.gradle 文件

'''   

buildscript {
ext.kotlin_version = '1.3.50'
repositories {
google()
jcenter()
}

dependencies {
classpath 'com.android.tools:r8:2.1.75'
classpath 'com.google.gms:google-services:4.3.2'
classpath 'com.android.tools.build:gradle:4.1.1'
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
}

'''

android 应用文件夹中的 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"

def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('key.properties')
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}



android {
compileSdkVersion 28

sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}





defaultConfig {
// TODO: Specify your own unique Application ID
(https://developer.android.com/studio/build/application-id.html).
applicationId "com.abhishekbhamare.covid19"
minSdkVersion 16
targetSdkVersion 28
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}



signingConfigs {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
storePassword keystoreProperties['storePassword']
}
}


'''

提前致谢

附:这是我第一次发布关于堆栈溢出的帖子,所以如果帖子格式有任何错误,请忽略并为此道歉。

最佳答案

在您的 key.properties 文件中,而不是storeFile= C:\Users<用户名>\upload-keystore.jks

使用这个 storeFile=C:/Users/username/upload-keystore.jks

将文件路径中的\替换为/

如果是这种情况,这将解决错误。

关于android - 如何解决 flutter 中的 build.gradle 错误。如何解决此错误 "A problem occurred evaluating project ' :app'. > Malformed\uxxxx 编码。”,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67438955/

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