我正在使用flutter ssh软件包。
当我在调试模式下测试我的应用程序时,该应用程序可以正常运行,并且ssh包可以正常运行,但是当我构建该应用程序的发行版时,ssh无法正常工作。
这是我的代码:
var client = SSHClient(host: "234.34.65.3", port: 22, username: "aesr", passwordOrKey: "aesraesr");
Future getData()async{
await client.connect();
await client.execute("iwconfig").then(
(value){
setState(() {
data = value;
});
}
);
}
更新: 这是我的AndroidMainfest文件
<manifest xlmns:android...>
...
<uses-permission android:name="android.permission.INTERNET" />
<application ...
</manifest>