Skip to content
View Schadenfeude's full-sized avatar
Block or Report

Block or report Schadenfeude

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. slider-layout slider-layout Public

    A zoom / slider / picker layout for Android

    Kotlin 4

  2. Drawer (≡) to close (x) animated vec... Drawer (≡) to close (x) animated vector drawable
    1
    <?xml version="1.0" encoding="utf-8"?>
    2
    <animated-selector xmlns:android="http://schemas.android.com/apk/res/android">
    3
        <item
    4
            android:id="@+id/open"
    5
            android:drawable="@drawable/ic_drawer_closed"
  3. Gradle configuration for better depe... Gradle configuration for better dependency management in a multi-module project
    1
    apply plugin: 'com.android.application'
    2
    apply from: "$rootDir/common.gradle"
    3
    apply plugin: 'androidx.navigation.safeargs.kotlin'
    4
    
                  
    5
    android {
  4. A facade which provides an implement... A facade which provides an implementation of a billing manager depending on whether in-app billing via PlayStore is available
    1
    import android.content.Context
    2
    import android.util.Log
    3
    import com.android.billingclient.api.BillingClient
    4
    import com.android.billingclient.api.BillingClientStateListener
    5
    import com.android.billingclient.api.Purchase
  5. Top level .gitignore for Android pro... Top level .gitignore for Android projects
    1
    *.iml
    2
    .idea/
    3
    .gradle/
    4
    build/
    5
    local.properties
  6. Example Jenkinsfile declarative pipe... Example Jenkinsfile declarative pipeline for Android projects
    1
    pipeline {
    2
        agent {
    3
            // Run on a build agent where we have the Android SDK installed
    4
            label 'android'
    5
        }