Added grow animation to LrcView

This commit is contained in:
Prathamesh More 2022-01-04 14:26:22 +05:30
parent 956cce6989
commit 5a5b464057
4 changed files with 23 additions and 12 deletions

View file

@ -1,10 +1,12 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.6.10'
ext.navigation_version = '2.4.0-rc01'
ext.mdc_version = '1.5.0-rc01'
ext.preference_version = '1.2.0-rc01'
ext {
kotlin_version = '1.6.10'
navigation_version = '2.4.0-rc01'
mdc_version = '1.5.0-rc01'
preference_version = '1.2.0-rc01'
}
repositories {
@ -17,9 +19,6 @@ buildscript {
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:$navigation_version"
}
}
plugins {
id "com.github.ben-manes.versions" version "0.39.0"
}
task clean(type: Delete) {
delete rootProject.buildDir
}