Skip to content

Latest commit

 

History

History
27 lines (26 loc) · 632 Bytes

README.md

File metadata and controls

27 lines (26 loc) · 632 Bytes

Toastmeister Extension

Installation:

Step 1:

Android Gradle plugin (AGP) lower than 7.0 - add it in your root build.gradle at the end of repositories:

allprojects {
   repositories {
     ...
     maven { url 'https://jitpack.io' }
    }
}

Android Gradle plugin (AGP) 7.0 and higher add it in your root gradle.settings at the end of repositories:

repositories {
    ...
    maven { url 'https://jitpack.io' }
}

Step 2:

dependencies {
    implementation 'com.github.kopylovis:toastmeister:1.0'
}