Skip to content

Instantly share code, notes, and snippets.

View aiyu-ayaan's full-sized avatar
💗
Sharing love from the bits of my broken heart, with all the love I've got.

Ayaan aiyu-ayaan

💗
Sharing love from the bits of my broken heart, with all the love I've got.
View GitHub Profile
@aiyu-ayaan
aiyu-ayaan / CI_CD Android.md
Created February 17, 2023 12:13
Make Release Build Using GitHub Action

Steps

1. The first step includes decoding the Key

openssl base64 < Keys.jks | tr -d 'n' | tee signing.txt

Note commands only works on Linux/MacOs if you have windows use Git bash.

After you run this command as a result it will give a text file which includes a encripted version of for keys.

2. Adding Secrets

@aiyu-ayaan
aiyu-ayaan / RoundedBarChart.java
Created February 4, 2023 04:55 — forked from xanscale/RoundedBarChart.java
MPAndroidChart BarChart with rounded corner (based from v3.1.0). Just replaced drawRect with drawRoundRect
package com.scarozza;
import android.content.Context;
import android.content.res.TypedArray;
import android.graphics.Canvas;
import android.graphics.LinearGradient;
import android.graphics.RectF;
import android.util.AttributeSet;
import com.github.mikephil.charting.animation.ChartAnimator;