### Add Jitpack Repository to settings.gradle (Kotlin) Source: https://github.com/liangjingkanji/spannable/blob/master/README.md This snippet shows how to add the Jitpack Maven repository to your project's settings.gradle file, which is required to fetch the library dependency. ```Kotlin dependencyResolutionManagement { repositories { // ... maven { url 'https://jitpack.io' } } } ``` -------------------------------- ### Add Spannable Library Dependency to build.gradle (Groovy) Source: https://github.com/liangjingkanji/spannable/blob/master/README.md This snippet shows how to add the Spannable library as a dependency in your module's build.gradle file using the implementation configuration. ```Groovy implementation 'com.github.liangjingkanji:spannable:1.2.7' ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.