Skip to content
View DaniilPavlenko's full-sized avatar
🖥️
🖥️

Block or report DaniilPavlenko

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 Loading

  1. weather weather Public

    This is my test project for my first job in 2019, and it was rewritten in 2024

    Kotlin

  2. patterns patterns Public

    Patterns

    Kotlin

  3. Android Emulator ADB Toggle WiFi (Wi... Android Emulator ADB Toggle WiFi (Windows batch)
    1
    # Toggle emulator WiFi
    2
    1. Add a new "External Tool"
    3
    1. Specify `cmd` as a program
    4
    1. Add the bellow string into the Argument field
    5
    ```bat
  4. Gradle: Test android app build speed Gradle: Test android app build speed
    1
    $numberOfBuilds = 10; `
    2
    $gradleCommand = ".\gradlew --offline --rerun-tasks --no-build-cache --max-workers=4 assembleDebug"; `
    3
    Write-Host 'Starting builds...'; `
    4
    for ($i=1; $i -le $numberOfBuilds; $i++) { `
    5
      $buildTime = iex $gradleCommand | select -last 200; `
  5. adb swipe Down & fast swipe Up adb swipe Down & fast swipe Up
    1
    adb shell "input swipe 811 1888 811 469 300 && input swipe 811 469 811 888 50"
  6. DaggerExample DaggerExample Public

    CodingWithMitch Dagger2.2 (Kotlin)

    Kotlin 1