Skip to content

Commit

Permalink
updates support lib to 25.1.1
Browse files Browse the repository at this point in the history
refactors support lib dependency versioning
updates version to v0.3.4
  • Loading branch information
patrickfav committed Jan 31, 2017
1 parent 889b466 commit 8e62cc1
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Releases

## v0.3.4
* updates support lib version to 25.1.1

## v0.3.3
* fixes build script to auto upload to maven central
* fixes gradle git command to get commit date
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following to your dependencies ([add jcenter to your repositories](http

```gradle
dependencies {
compile 'at.favre.lib:dali:0.3.3'
compile 'at.favre.lib:dali:0.3.4'
}
```

Expand Down
7 changes: 3 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,10 @@ android {
}

dependencies {
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.android.support:appcompat-v7:25.1.0'
compile "com.android.support:appcompat-v7:$rootProject.ext.dependencies.support"
compile 'com.squareup.picasso:picasso:2.5.2'

compile 'at.favre.lib:dali:0.3.1'
compile 'at.favre.lib.hood:hood-extended:0.4.1'
compile 'at.favre.lib:dali:0.3.+'
compile 'at.favre.lib.hood:hood-extended:0.4.+'
// compile project(path: ':dali')
}
15 changes: 14 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,24 @@ allprojects {
apply from: "$rootDir/gradle/common-build.gradle"

ext {
versionName = "0.3.3"
versionName = "0.3.4"
versionCode = getCiBuildNumber()
compileSdkVersion = 25
buildToolsVersion = "25.0.2"
targetSdkVersion = 24
minSdkVersion = 10
renderscriptTargetApi = 20

dependencies = [
support: "25.1.1"
]
}

configurations.all {
resolutionStrategy {
force group: 'com.android.support', name: 'support-v4', version: rootProject.ext.dependencies.support
force group: 'com.android.support', name: 'appcompat-v7', version: rootProject.ext.dependencies.support
force group: 'com.android.support', name: 'support-annotations', version: rootProject.ext.dependencies.support
force group: 'com.android.support', name: 'recyclerview', version: rootProject.ext.dependencies.support
}
}
4 changes: 2 additions & 2 deletions dali/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ android {

dependencies {
compile 'com.jakewharton:disklrucache:2.0.2'
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.android.support:recyclerview-v7:25.1.0'
compile "com.android.support:appcompat-v7:$rootProject.ext.dependencies.support"
compile "com.android.support:recyclerview-v7:$rootProject.ext.dependencies.support"
}

apply from: "$rootDir/gradle/publish.gradle"

0 comments on commit 8e62cc1

Please sign in to comment.