Skip to content

Instantly share code, notes, and snippets.

View TarasOsiris's full-sized avatar
🌍
https://ninevastudios.com/

Taras Leskiv TarasOsiris

🌍
https://ninevastudios.com/
View GitHub Profile
allprojects {
def mappings = [
'android.support.annotation': 'androidx.annotation',
'android.arch.lifecycle': 'androidx.lifecycle',
'android.support.v4.app.NotificationCompat': 'androidx.core.app.NotificationCompat',
'android.support.v4.app.ActivityCompat': 'androidx.core.app.ActivityCompat',
'android.support.v4.content.ContextCompat': 'androidx.core.content.ContextCompat',
'android.support.v13.app.FragmentCompat': 'androidx.legacy.app.FragmentCompat',
'android.arch.lifecycle.Lifecycle': 'androidx.lifecycle.Lifecycle',
'android.arch.lifecycle.LifecycleObserver': 'androidx.lifecycle.LifecycleObserver',
@TarasOsiris
TarasOsiris / Release checklist
Created August 13, 2020 11:24
Unity Asset Store Release checklist
In Unity Project:
* Check if there are no compile errors or warnings on other platforms (Desktop e.g.)
* Make sure you rebuild the latest library into Unity project (.aar on Android)
* Test all implemented features on all Android versions (oldest and newest), different devices and emulators, on iOS test on all devices
* Test if old features didn't break
* Check if no side plugins are in the project that could be submitted (e.g. Plugins/Editor/Rider)
* Check if no hardcoded API keys are remaining (Google Maps, Place Picker)
* Update documentation
* Check if README.txt release notes in project are up-to-date
using UnityEngine;
public class AlarmClock : MonoBehaviour
{
const string ACTION_SET_ALARM = "android.intent.action.SET_ALARM";
const string EXTRA_HOUR = "android.intent.extra.alarm.HOUR";
const string EXTRA_MINUTES = "android.intent.extra.alarm.MINUTES";
const string EXTRA_MESSAGE = "android.intent.extra.alarm.MESSAGE";
public void OnClick()
@TarasOsiris
TarasOsiris / MyPluginIsBananas.cs
Last active November 26, 2020 01:07
Create Toast on Android Unity
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class MyPluginIsBananas : MonoBehaviour
{
const string ToastClassName = "android.widget.Toast";
public void OnMyButtonClick()
{
@TarasOsiris
TarasOsiris / GetSocialPostprocessIOS.cs
Created November 28, 2016 12:14
VNG support for adding deeplinking to iOS 8
/**
* Copyright 2015-2016 GetSocial B.V.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
@TarasOsiris
TarasOsiris / DumpEditorTextures.cs
Last active February 15, 2023 10:07
Dump all Unity3d Editor GUI skin textures as images
using UnityEngine;
using System.IO;
using UnityEditor;
public static class DumpEditorTextures
{
const string AssetsFolder = "Assets";
const string TexturesDestFolderNamePro = "TexturesPro";
const string TexturesDestFolderNameNormal = "TexturesNormal";
static readonly string TexturesDestPathPro = Path.Combine(AssetsFolder, TexturesDestFolderNamePro);
@TarasOsiris
TarasOsiris / git-deletebranches.sh
Created August 18, 2016 12:09 — forked from zasadnyy/git-deletebranches.sh
Git Delete Merged Branches
#!/bin/bash
MAIN=develop
BRANCHES=$(git branch --merged $MAIN | grep -v -e 'master\|staging\|develop\|\*')
echo Branches merged into $MAIN:
echo $BRANCHES | tr " " "\n"
read -p "Delete these branches (y/n)? " answer
@TarasOsiris
TarasOsiris / donate.md
Last active July 8, 2016 09:08 — forked from skratchdot/donate.md
My Paypal donate button in markdown format

Donation Button

Donate

#if UNITY_ANDROID
using UnityEngine;
using System;
public static class AndroidNativePicker
{
public delegate void OnDatePicked(int year,int month,int day);
public delegate void OnTimePicked(int hourOfDay, int minute);
public static void ShowDatePicker(OnDatePicked callback)
@TarasOsiris
TarasOsiris / SteeringSeek.cs
Created June 4, 2016 18:49
Understanding Steering Behaviors: Seek
using UnityEngine;
public class Seek : MonoBehaviour
{
private Transform pointer;
public float speed = 1.0f;
public float mass = 1.0f;
private Vector2 curVelocity;