Kotlin Extensions
Curated list of Most commonly used Kotlin Extensions.
🏃♂️ Running 73.56 km ▩▩▩▩▩▩▩▩▩▩▨□ 5.60/h | |
🏊♂️ Swimming 0.00 km □□□□□□□□□□□□ 0.00/h | |
🚴♂️ Cycling 9.50 km ▩◱□□□□□□□□□□ 14.97/h | |
Last month 0.00 km 0:0h |
Kotlin 5 hrs 21 mins ■■■■■■■■■■■■■■■■ 93.0% | |
Java 22 mins ■■■◱□□□□□□□□□□□□ 6.4% | |
YAML 1 min ■■◱□□□□□□□□□□□□□ 0.5% | |
XML 0 secs ■■◱□□□□□□□□□□□□□ 0.1% | |
Gradle 0 secs ■■◱□□□□□□□□□□□□□ 0.0% | |
Shrinker Config File 0 secs ■■◱□□□□□□□□□□□□□ 0.0% |
name: Release And Update | |
on: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
apk: | |
name: Release APK | |
runs-on: ubuntu-18.04 |
#!/bin/bash TEXT=$1 if [ -z "$TEXT" ]; then echo "Usage: android-paste TEXT" exit fi ( echo sms send 5555555555 $TEXT; sleep 1; ) | telnet localhost 5554 &> /dev/null |
/** | |
* Utility functions for Android View | |
*/ | |
fun View.setZTranslation(z: Float) { | |
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP) { | |
this.translationZ = z | |
} | |
} | |
/** |
<TaskOptions> | |
<TaskOptions> | |
<option name="arguments" value="--write --single-quote --tab-width 4 -- $FilePath$" /> | |
<option name="checkSyntaxErrors" value="true" /> | |
<option name="description" /> | |
<option name="exitCodeBehavior" value="ERROR" /> | |
<option name="fileExtension" value="js" /> | |
<option name="immediateSync" value="false" /> | |
<option name="name" value="Prettier" /> | |
<option name="output" value="" /> |
# This file contains the fastlane.tools configuration | |
# You can find the documentation at https://docs.fastlane.tools | |
# | |
# For a list of all available actions, check out | |
# | |
# https://docs.fastlane.tools/actions | |
# | |
# For a list of all available plugins, check out | |
# | |
# https://docs.fastlane.tools/plugins/available-plugins |
# This file contains the fastlane.tools configuration | |
# You can find the documentation at https://docs.fastlane.tools | |
# | |
# For a list of all available actions, check out | |
# | |
# https://docs.fastlane.tools/actions | |
# | |
# For a list of all available plugins, check out | |
# | |
# https://docs.fastlane.tools/plugins/available-plugins |
package me.seebrock3r.common.widget | |
import android.graphics.Canvas | |
import android.graphics.Paint | |
import android.graphics.Rect | |
import android.view.View | |
import androidx.annotation.ColorInt | |
import androidx.annotation.Px | |
import androidx.core.graphics.withTranslation | |
import androidx.core.view.children |