我的调试APK正常运行,但是从命令flutter build apk
构建它之后,释放APK无法正常工作。这里真正的问题是什么?
答案 0 :(得分:1)
在调试模式下,任何全局变量或方法都将正常运行,但在发布模式下,仅编译本机代码。因此,假设我们正在获取一些未格式化的文本,并且希望对其进行格式化并返回,因此,如果您具有如下所示的格式化文本的全局函数,则在调试模式下可以正常工作,但在发布模式下可能会导致问题。
具有全局功能的代码。
// Global Function
String formatText(String unformattedText){
// ....
return formattedText;
}
Widget _showFormattedText(String unformattedText) {
final fd = formatText(unformattedText);
return Text(fd);
}
相反,我们应该遵循最佳实践,并将所有内容包装在全局存在的类中。
// Code with class method.
class CustomFunctions{
static String formatText(String unformattedText){
// ....
return formattedText;
}
}
Widget _showFormattedText(String unformattedText) {
final fd = CustomFunctions.formatText(unformattedText);
return Text(fd);
}