0

我尝试使用 Codemagic 构建 Flutter ios 应用程序并使用 Cydia Impactor 安装。我正在使用 Ubuntu 18.04。该链接是我所指的。

==>在没有 Mac 的情况下为 iOS 开发和调试 Flutter 应用程序

Codemagic 成功构建 Flutter 应用并返回 Runner.app 文件。我从 Runner.app 制作了 .ipa 文件,然后使用 Cydia Impactor 工具安装在 ios 设备上。问题是,当运行应用程序时,它会立即退出并且什么也不显示。

这是我构建 ios 应用程序的 hello world 颤振示例代码。

// Copyright 2018 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import 'package:flutter/material.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Welcome to Flutter',
      home: Scaffold(
        appBar: AppBar(
          title: Text('Welcome to Flutter'),
        ),
        body: Center(
          child: Text('Hello World'),
        ),
      ),
    );
  }
}

这可以很好地由 Android 模拟器运行。什么原因导致应用程序在 ios 设备上退出?我想知道如何在我的环境中调试应用程序。请帮忙。

4

0 回答 0