简体   繁体   English

我的 Flutter 应用程序将在哪些版本的 android/ios 上运行?

[英]Which versions of android/ios will my flutter app run on?

I am building a flutter application that is about 70 percent complete and am wondering, how can I tell/set which android/ios versions it will run on?我正在构建一个完成度约为 70% 的 Flutter 应用程序,我想知道如何判断/设置它将在哪些 android/ios 版本上运行? How do you work with this with flutter?你如何用颤振处理这个? Thanks for all your help!感谢你的帮助!

you can configure your minimum targets for Android and iOS as you would in a native app, depending on your needs for each platform:您可以像在本机应用程序中一样为 Android 和 iOS 配置最低目标,具体取决于您对每个平台的需求:

  • Android: edit android/app/build.gradle , change android.defaultConfig.minSdkVersion . Android:编辑android/app/build.gradle ,更改android.defaultConfig.minSdkVersion
  • iOS: Xcode > select your project in the file tree > change the Deployment Target . iOS:Xcode > 在文件树中选择您的项目 > 更改Deployment Target

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 哪个 Android 版本运行哪个 Java 版本? - Which Android versions run which Java versions? 如何知道我的 flutter 应用程序在哪些版本的 IOS 和 Android 上有效 - how to know on what versions of IOS and Android my flutter application will work 有没有办法知道我的 Flutter 应用程序使用的是哪个 Android API 版本? - Is there a way to know which Android API version is my flutter app using? 为什么我的 Flutter 应用程序在 Android 上请求 Run on Startup 权限? - Why does my Flutter app requests Run on Startup permission on Android? 制作新项目时,如何确保我的Android应用程序可以在3个不同版本的Android上运行? - When making a new project, how do I ensure my Android App will run on 3 different versions of Android? 如何确保应用程序可以在大多数版本的Android上运行? - How to ensure an app will run in most versions of Android? 难题…开发我的Android和iOS应用程序的程序和语言 - Dilemma… Which Program & Language to develop my Android and iOS App 我的应用程序无法在Android 7.0和更早版本上运行 - My app not working on Android 7.0 and older versions 如何确定我的应用程序支持的Android版本 - How to determine versions of Android supported by my app 在 MacOS 上的 iOS 模拟器上运行颤振应用程序失败 - Failed run flutter app on iOS Simulator on MacOS
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM