Skip to content

Instantly share code, notes, and snippets.

View wendellq89's full-sized avatar
🏠
Working from home

wendell wendellq89

🏠
Working from home
  • Global Sources
  • Shenzhen
View GitHub Profile
@OleksandrKucherenko
OleksandrKucherenko / KeyboardHelper.java
Last active May 2, 2021 18:50
Helper class that help to track opening/close of virtual keyboard in activity/fragment.
// Author: Oleksandr Kucherenko, 2016-present
package your.package.android.utils;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.content.Context;
import android.graphics.Point;
import android.graphics.Rect;
import android.graphics.drawable.ColorDrawable;
import android.os.Build;
@prajapatiravi257
prajapatiravi257 / SignedApkGenrator.sh
Created January 30, 2018 04:46
Small bash script for generating keystore file and generate signed apk for ionic apps
#!/bin/bash
echo "-----------Release apk builder for Ionic-------------"
echo "---------------By rio257-------------------"
read -p "Do you want to generate keystore file? <Y/N> " prompt
read -p "Enter the name of app? " appname
if [[ $prompt == "y" || $prompt == "Y" || $prompt == "yes" || $prompt == "Yes" ]]
then