Skip to content

Instantly share code, notes, and snippets.

View Bip901's full-sized avatar
💨
Rather be a smart fella than a fart smella

Ori Bip901

💨
Rather be a smart fella than a fart smella
View GitHub Profile
#!/usr/bin/env python3
"""
This is a Python port of the bash script on https://developer.android.com/guide/topics/data/testingbackup
"""
import os
from argparse import ArgumentParser
from subprocess import PIPE, run
from tempfile import TemporaryDirectory
from typing import List
@Bip901
Bip901 / android-arm64.pubxml
Last active December 23, 2023 17:15
Build C# for Android Native
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project>
<PropertyGroup>
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
<PublishDir>bin\Release\net8.0\publish\android-arm64\</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
@Bip901
Bip901 / launch.json
Created April 13, 2024 14:18
VSCode Configuration for Godot 4 C# Debugging
{
// Set the GODOT4 environment variable to your Godot executable path, e.g. C:\Godot_v4.2.1-stable_mono_win64.exe
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch & Debug",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",