Skip to content

Instantly share code, notes, and snippets.

View manwithsteelnerves's full-sized avatar

Ayyappa manwithsteelnerves

View GitHub Profile
@OleksandrKucherenko
OleksandrKucherenko / build.gradle
Last active August 2, 2024 10:43
repack AAR with different types of compatibility things, like: androidx vs support library, include/exclude/repackage aar during compilation
/** Copyright: 2019-*, Oleksandr Kucherenko ([email protected]) */
apply plugin: 'com.android.library'
android {
/* ... default android lib OR app configuration ... */
}
configurations {
repack { transitive = false }
compatibility { transitive = false }
#!/bin/bash
# seed-storage
# ============
# Seed an existing firebase cloud storage emulator instance. Run it inside your
# project's firebase folder, ie: ./seed-storage.sh <project-name> <dest-folder>
name=firebase_export # firebase export dir name
project=$1 # project name
root=$2 # export root path
@Marc-Ducret
Marc-Ducret / SteamBuild.cs
Created March 9, 2023 15:21
Automate build and deploy to Steam
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Text;
using DiceKingdoms.Meta;
using UnityEngine;
using Unity.Build;
using UnityEditor;