Skip to content

Instantly share code, notes, and snippets.

View mo7amd89's full-sized avatar

Mohammed Alshareif mo7amd89

View GitHub Profile
@mzelzoghbi
mzelzoghbi / screen-debug.md
Created February 22, 2026 22:12
screen-debug.md
description Capture and analyze the current Android device/emulator screen via ADB

Screen Debug: ADB Screen Capture & Analysis

You are tasked with capturing and analyzing what is currently displayed on a connected Android device or emulator. This helps debug UI issues, verify screen state, and inspect the view hierarchy.

User Context

@adrianoluis
adrianoluis / QRCodeUtil.java
Created February 8, 2017 02:51
Simple utility class to create QR Code as Bitmap on Android using ZXing library
import android.graphics.Bitmap;
import android.graphics.Color;
import com.google.zxing.BarcodeFormat;
import com.google.zxing.MultiFormatWriter;
import com.google.zxing.WriterException;
import com.google.zxing.common.BitMatrix;
public class QRCodeUtil {