February** Dynamic Incentive Program
Android Studio is Google's official integrated Android application development environment (IDE) based on IntelliJ Idea. We find the latest version on the official website (as of the finalization of this article, the latest version is 34),* After launching the installation file, all that remains is to follow the system prompts to install the SDK and project the configuration work. After the configuration is completed, we open **d manager, click the "create virtual device" button to create an Android phone emulator, and the installation and configuration of Android Studio is completed.
Install Xcode, Apple's official integrated development environment (IDE) for iOS and macOS applications. It's very easy to install, just search for Xcode in the App Store on macOS and install it. Once the installation is complete, we'll see the Xcode icon on the Launchpad, open it, follow the prompts to accept the Xcode license agreement, and install the configuration components. After the configuration is completed, we open the terminal, enter the command open -a simulator to open the iOS emulator, check the settings in the hardware>device menu item, and try to switch between different emulators. The installation and configuration of Xcode was successfully completed.
The flutter origin needs magic, and we need to configure it.
vim ~/.Bash Profile Add the following at the end of the file:
export pub_hosted_url= export flutter_storage_base_url=We right-click on the computer icon, Properties > Advanced System Settings > Advanced > Environment Variables, create a new user variable.
pub_hosted_url => ;flutter_storage_base_url =>Restart your computer to complete the configuration.
If the environment variable changes, follow the flutter community using flutter in China to get other available image resources, and update the environment variable at any time.
Let's go to the official Flutter website and select the latest stable version.
Add another environment variable after installation.
export path=~/documents/flutter/bin:$pathThe flutter SDK installation is complete.
cd ~/documents/flutter/examples/hello_worldflutter emulators --launch apple_ios_simulatorflutter run