If you are a React Native, NativeScript, Flutter or Ionic developer maybe you don't want to install the entire Android Studio just to have your environment ready. If this is your case, this guide will help you to setup your minimal Android SDK environment in Windows.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Param ( | |
| [Parameter(Mandatory=$true)] | |
| [string[]] $AssemblyInfoFilesPath, | |
| [Parameter(Mandatory=$true)] | |
| [Version] $Version | |
| ) | |
| $ErrorActionPreference = 'Stop' # Stops executing on error instead of silent continue. | |
| Set-StrictMode -Version Latest # Enforces coding rules in expressions, scripts, and script blocks. Uninitialized variables are not permitted. |
