Last active
November 6, 2025 20:23
-
-
Save peter-mghendi/9bb957b1114f92fbf3eb037689fbcf71 to your computer and use it in GitHub Desktop.
Collection of random usefiul bash commands
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
| # Installing Android SDKs and accepting SDK license agreements for a net10.0-android project. | |
| # Requires JDK 17 now, up from JDK 11 requirement in net9.0-android. | |
| # Target is InstallAndroidDependencies, so this won't actualy build the project, still need to run dotnet build. | |
| dotnet build -t:InstallAndroidDependencies -f net10.0-android "-p:AndroidSdkDirectory=/home/peter/Android/Sdk" "-p:AcceptAndroidSDKLicenses=true" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment