web-dev-qa-db-ja.com

app-release.apkのインストール時にフラッターアプリケーションがインターネットに接続できないのはなぜですか?デバッグモードでは通常

デバッグモードでは、すべてが問題なく見え、APIから応答とデータのリストを取得します。しかし、app-release.apkをビルドして電話にインストールした後、インターネット接続が表示されません

これが私のコードです

ScopedModelDescendant<ReportPosViewModel>(
  builder: (context, child, model) {
    return FutureBuilder<List<Invoice>>(
      future: model.invoices,
      builder: (_,
          AsyncSnapshot<List<Invoice>> snapshot) {
        switch (snapshot.connectionState) {
          case ConnectionState.none:
          case ConnectionState.active:
          case ConnectionState.waiting:
            return Center(
                child:
                    const CircularProgressIndicator());
          case ConnectionState.done:
            if (snapshot.hasData) {
              //something todo
            } else if (snapshot.hasError) {
              return NoInternetConnection(
                action: () async {
                  await model.setInvoice();
                  await getData();
                },
              );
            }
        }
      },
    );
  },
),
18
bimasakti

パッケージ名の後にAndroid/app/src/main/AndroidManifest.xmlに追加します

0
bimasakti