Commit 7586b2577c1e85e5de7506d3aecf23984bf903bc

Authored by YangShuai
1 parent 08023a64

1 修改动画依赖

build.gradle
... ... @@ -100,5 +100,10 @@ ext {
100 100 //阿里路由框架
101 101 arouterApiVersion = '1.4.0'
102 102 arouterCompilerVersion = '1.2.1'
  103 +
  104 + //动画大全
  105 + viewAnimationsEasing='2.0@aar'
  106 + viewAnimationsAndroid='2.3@aar'
  107 +
103 108 }
104 109  
... ...
config.gradle
... ... @@ -21,7 +21,7 @@ ext {
21 21 //编译方式
22 22 debug : false,
23 23 //版本号
24   - version: "0.1.16",
  24 + version: "0.1.17",
25 25 //Lib库前缀
26 26 packeg : "com.cnlive.module",
27 27 //Lib库名称
... ...
module_xiaojiaSoundBox/build.gradle
... ... @@ -85,8 +85,10 @@ dependencies {
85 85 // 动画库
86 86  
87 87 // implementation 'com.android.support:support-compat:25.1.1'
88   - implementation 'com.daimajia.easing:library:2.0@aar'
89   - implementation 'com.daimajia.androidanimations:library:2.3@aar'
  88 + // 动画大全
  89 + implementation "com.daimajia.easing:library:$rootProject.viewAnimationsEasing"
  90 + implementation "com.daimajia.androidanimations:library:$rootProject.viewAnimationsAndroid"
  91 +
90 92 implementation 'com.android.support.constraint:constraint-layout:1.1.3'
91 93  
92 94 implementation "com.alibaba:arouter-api:$rootProject.arouterApiVersion"
... ...