Skip to content

Instantly share code, notes, and snippets.

@ateliee
ateliee / upload_apk_or_aab.py
Last active May 23, 2019 00:53
Android App Bundleを自動アップロードさせる
#!/usr/bin/python
# coding: UTF-8
#
# Copyright 2019 ateliee.com. All Rights Reserved.
#
# 参考
# https://github.com/googlesamples/android-play-publisher-api/tree/master/v3/python
# 公式のものはapkのみのサポートだったので、aab対応してみた。
# ついでにサービスアカウント(json,p12)対応
@ateliee
ateliee / SafeArea.cs
Last active October 14, 2018 01:37
UnityでSafeAreaをエディタ上に表示するMonoBehaviour
using UnityEngine;
using System.Collections;
/// <summary>
/// SafeAreaの反映
/// </summary>
[ExecuteInEditMode]
public class SafeArea : MonoBehaviour
{
private RectTransform rectTransform;