File tree Expand file tree Collapse file tree 5 files changed +23
-8
lines changed
Expand file tree Collapse file tree 5 files changed +23
-8
lines changed Original file line number Diff line number Diff line change 11# Releases
22
3+ ## v0.3.4
4+ * updates support lib version to 25.1.1
5+
36## v0.3.3
47* fixes build script to auto upload to maven central
58* fixes gradle git command to get commit date
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Add the following to your dependencies ([add jcenter to your repositories](http
2222
2323``` gradle
2424 dependencies {
25- compile 'at.favre.lib:dali:0.3.3 '
25+ compile 'at.favre.lib:dali:0.3.4 '
2626 }
2727```
2828
Original file line number Diff line number Diff line change @@ -63,11 +63,10 @@ android {
6363}
6464
6565dependencies {
66- compile ' com.android.support:appcompat-v7:25.1.0'
67- compile ' com.android.support:appcompat-v7:25.1.0'
66+ compile " com.android.support:appcompat-v7:$rootProject . ext . dependencies . support "
6867 compile ' com.squareup.picasso:picasso:2.5.2'
6968
70- compile ' at.favre.lib:dali:0.3.1 '
71- compile ' at.favre.lib.hood:hood-extended:0.4.1 '
69+ compile ' at.favre.lib:dali:0.3.+ '
70+ compile ' at.favre.lib.hood:hood-extended:0.4.+ '
7271// compile project(path: ':dali')
7372}
Original file line number Diff line number Diff line change @@ -22,11 +22,24 @@ allprojects {
2222apply from : " $rootDir /gradle/common-build.gradle"
2323
2424ext {
25- versionName = " 0.3.3 "
25+ versionName = " 0.3.4 "
2626 versionCode = getCiBuildNumber()
2727 compileSdkVersion = 25
2828 buildToolsVersion = " 25.0.2"
2929 targetSdkVersion = 24
3030 minSdkVersion = 10
3131 renderscriptTargetApi = 20
32+
33+ dependencies = [
34+ support : " 25.1.1"
35+ ]
3236}
37+
38+ configurations. all {
39+ resolutionStrategy {
40+ force group : ' com.android.support' , name : ' support-v4' , version : rootProject. ext. dependencies. support
41+ force group : ' com.android.support' , name : ' appcompat-v7' , version : rootProject. ext. dependencies. support
42+ force group : ' com.android.support' , name : ' support-annotations' , version : rootProject. ext. dependencies. support
43+ force group : ' com.android.support' , name : ' recyclerview' , version : rootProject. ext. dependencies. support
44+ }
45+ }
Original file line number Diff line number Diff line change @@ -55,8 +55,8 @@ android {
5555
5656dependencies {
5757 compile ' com.jakewharton:disklrucache:2.0.2'
58- compile ' com.android.support:appcompat-v7:25.1.0 '
59- compile ' com.android.support:recyclerview-v7:25.1.0 '
58+ compile " com.android.support:appcompat-v7:$r ootProject . ext . dependencies . support "
59+ compile " com.android.support:recyclerview-v7:$r ootProject . ext . dependencies . support "
6060}
6161
6262apply from : " $rootDir /gradle/publish.gradle"
You can’t perform that action at this time.
0 commit comments