Skip to content

Instantly share code, notes, and snippets.

View akexorcist's full-sized avatar
🔥

Akexorcist akexorcist

🔥
View GitHub Profile
@akexorcist
akexorcist / MaterialButtonGroup.kt
Last active October 26, 2021 18:05
Material Button Group for Material Button in Android
package com.akexorcist.materialdesign
import android.content.Context
import androidx.core.view.MarginLayoutParamsCompat
import androidx.core.view.ViewCompat
import android.util.AttributeSet
import android.util.Log
import android.view.View
import android.widget.LinearLayout
import com.google.android.material.shape.AbsoluteCornerSize
@akexorcist
akexorcist / view_constraint_layout_issue.xml
Last active April 28, 2021 13:21
Mystery issue in ConstraintLayout 2.0.2
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingStart="16dp"
android:paddingTop="16dp"
android:paddingEnd="16dp">
<androidx.constraintlayout.widget.ConstraintLayout
@akexorcist
akexorcist / device_list.txt
Last active December 6, 2024 14:22
Android Device List in Firebase Test Lab [30 August 2024] from `gcloud firebase test android models list`
┌─────────────────────┬────────────┬──────────────────────────────────────────┬──────────┬─────────────┬────────────────────────────┬────────────────────────────────────┐
│ MODEL_ID │ MAKE │ MODEL_NAME │ FORM │ RESOLUTION │ OS_VERSION_IDS │ TAGS │
├─────────────────────┼────────────┼──────────────────────────────────────────┼──────────┼─────────────┼────────────────────────────┼────────────────────────────────────┤
│ 1610 │ Vivo │ vivo 1610 │ PHYSICAL │ 1280 x 720 │ 23 │ reduced_stability=23 │
│ AmatiTvEmulator │ Google │ Google TV Amati │ VIRTUAL │ 1080 x 1920 │ 29 │ beta=29 │
│ AndroidTablet270dpi │ Generic │ Generic 720x1600 Android tablet @ 270dpi │ VIRTUAL │ 1600 x 720 │ 30 │
@akexorcist
akexorcist / android.yml
Last active April 5, 2021 07:49
Android CI Workflow for GitHub Actions - Run UI Test on Firebase Test Lab
# ...
jobs:
test:
# ...
apk:
# ...
firebase:
name: Run UI tests with Firebase Test Lab
needs: apk
@akexorcist
akexorcist / android.yml
Last active April 3, 2021 20:33
Android CI Workflow for GitHub Actions - Build APK for UI Test
# ...
jobs:
test:
# ...
apk:
name: Generate APK
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
@akexorcist
akexorcist / android.yml
Created April 3, 2021 20:06
Android CI Workflow for GitHub Actions - Unit Test Job
#...
jobs:
test:
name: Unit Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: set up JDK 1.8
uses: actions/setup-java@v1
with:
@akexorcist
akexorcist / android.yml
Created April 3, 2021 19:42
Android CI Workflow for GitHub Actions - Initial
name: Android CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
@akexorcist
akexorcist / android.yml
Created April 1, 2021 03:38
Android CI + FIrebase Test Labs
name: Android CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
- LinearLayout
* Orientation : Vertical
* Width : Match Parent
* Height : Match Parent
- ScrollView (Content)
* Width : Match Parent
* Height : 0dp
* Weight : 1
- LinearLayout
* Orientation : Vertical
@akexorcist
akexorcist / coupon_section.xml
Created January 21, 2021 19:42
Build Coupon UI - Implementation
<LinearLayout
android:layout_width="match_parent"
android:layout_height="60dp"
android:orientation="horizontal">
<com.lmwn.library.ui.CouponLayout
android:layout_width="80dp"
android:layout_height="match_parent"
app:coupon_backgroundColor="#007565"
app:coupon_borderColor="#007565"