Skip to content

Instantly share code, notes, and snippets.

View khorezm0's full-sized avatar
🎯
Focusing

Akmal Kamalov khorezm0

🎯
Focusing
View GitHub Profile
@gugadev
gugadev / install-android-sdk-windows.md
Last active May 10, 2026 22:09
Guide: Install Android SDK on Windows (without AndroidStudio)

Android SDK setup - Windows guide

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.


@rosberglinhares
rosberglinhares / ChangeAssemblyVersion.ps1
Created May 12, 2016 03:38
Powershell script to change assembly and file version
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.