This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package it.sephiroth.android.library.simpleaes; | |
| import android.support.annotation.NonNull; | |
| import android.util.Base64; | |
| import java.security.GeneralSecurityException; | |
| import javax.crypto.Cipher; | |
| import javax.crypto.spec.IvParameterSpec; | |
| import javax.crypto.spec.SecretKeySpec; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| adb shell am broadcast -a android.intent.action.MEDIA_MOUNTED -d file:///mnt/sdcard/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| git log --all --numstat --pretty="%H" --author="author" --since=1.year | awk 'NF==3 {plus+=$1; minus+=$2} NF==1 {total++} END {printf("lines added: +%d\nlines deleted: -%d\ntotal commits: %d\n", plus, minus, total)}' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package it.sephiroth.android.library.myapplication; | |
| import android.animation.Animator; | |
| import android.annotation.TargetApi; | |
| import android.content.Context; | |
| import android.content.res.TypedArray; | |
| import android.os.Build; | |
| import android.transition.TransitionValues; | |
| import android.transition.Visibility; | |
| import android.util.AttributeSet; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function git_find_files() { | |
| if [ "$#" -ne 1 ] | |
| then | |
| echo "Usage: git_find_files string" | |
| return | |
| fi | |
| git log -p -S$1 --pickaxe-all --full-diff | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.adobe.android.ui.view; | |
| import android.content.Context; | |
| import android.content.res.TypedArray; | |
| import android.graphics.Canvas; | |
| import android.graphics.Rect; | |
| import android.graphics.drawable.Drawable; | |
| import android.support.v4.view.ViewCompat; | |
| import android.support.v7.widget.LinearLayoutManager; | |
| import android.support.v7.widget.RecyclerView; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cp {project}/src/main/libs/armeabi-v7a/gdbserver {project}/build/intermediates/bundles/{flavor}/debug/jni/armeabi-v7a/ | |
| adb shell | |
| su | |
| ps | grep '{packagename}' | |
| /data/app/{packagename}/lib/arm/gdbserver :8888 --attach 8150 | |
| * new terminal tab * | |
| adb forward tcp:8888 tcp:8888 | |
| arm-linux-androideabi-gdb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apply plugin: 'maven' | |
| apply plugin: 'signing' | |
| def isReleaseBuild() { | |
| return VERSION_NAME.contains("SNAPSHOT") == false | |
| } | |
| def getReleaseRepositoryUrl() { | |
| return "file:///${project.rootDir}/mvn-repo/release/" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Always draw the given bitmap into the Drawable's bounds, respecting | |
| * the bitmap's aspect ratio. | |
| * Best use with an ImageView with scaleType set to FIT_XY | |
| */ | |
| public class FitBitmapDrawable extends BitmapDrawable { | |
| private final Matrix matrix = new Matrix(); | |
| private final RectF mTempSrc = new RectF(); | |
| private final RectF mTempDst = new RectF(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public static class BitmapRetention { | |
| public static Bundle safeSave (@NonNull final Bitmap bitmap) { | |
| try { | |
| return save(bitmap); | |
| } catch (IOException e) { | |
| e.printStackTrace(); | |
| } | |
| return null; | |
| } |
OlderNewer