gpt4 book ai didi

android - 由于 Release模式下的内存问题导致应用程序崩溃

转载 作者:IT王子 更新时间:2023-10-29 07:02:16 26 4
gpt4 key购买 nike

我有一个 Flutter 应用程序在 Android 和 iOS 上不断崩溃。
我没有得到任何堆栈跟踪。该应用程序在 iOS 和 Android 上只是最小化。
我只是在一段时间后才收到崩溃报告。
我不明白问题是什么。
我认为这是因为一些内存问题。

下面是我的 Android build.gradle 文件。我正在使用 ListViewListView 中加载图像。

        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.")
}
configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
def requested = details.requested
if (requested.group == "com.android.support") {
if (!requested.name.startsWith("multidex")) {
details.useVersion "26.+"
}
}
}
all*.exclude group: 'com.google.guava', module: 'listenablefuture'
}
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 from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android {
compileSdkVersion 28
compileOptions {
sourceCompatibility 1.8
targetCompatibility 1.8
}
lintOptions {
disable 'InvalidPackage'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.xxx.xxx"
minSdkVersion 24

targetSdkVersion 28
multiDexEnabled true
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
ndk {
abiFilters = []
abiFilters.addAll(ABI_FILTERS.split(';').collect{it as String})
}
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
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 {
testImplementation 'junit:junit:4.12'
def supportLibVersion = rootProject.ext.supportLibVersion
androidTestImplementation 'androidx.test:runner:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
implementation "androidx.appcompat:appcompat:$supportLibVersion"
}
apply plugin: 'com.google.gms.google-services'

最佳答案

我认为问题在于您正在使用大尺寸图像在嵌套 ListView 中加载,而我看不到任何数据库,这意味着您正在从应用程序本身静态加载它们。这会导致内存不足异常,因为应用程序占用了太多内存。请从 firebase 或 sql 等数据库加载它,或者加载低分辨率的小 png 尺寸图像。希望它有所帮助。

关于android - 由于 Release模式下的内存问题导致应用程序崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57213857/

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