Skip to content

Commit

Permalink
Merge branch 'release/v5.2.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
mikepenz committed Oct 15, 2015
2 parents 607c4db + 331f1f4 commit 5aee3f6
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 12 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ You can find anything you search for in the wiki. (If not open an issue)
The AboutLibraries Library is pushed to [Maven Central](http://search.maven.org/#search|ga|1|g%3A%22com.mikepenz%22), so you just need to add the following dependency to your `build.gradle`. It seems it is also required to add the support dependencies to the application. If it works without, you should be fine too :).

```javascript
compile('com.mikepenz:aboutlibraries:5.2.4@aar') {
compile('com.mikepenz:aboutlibraries:5.2.5@aar') {
transitive = true
}
```
Expand Down Expand Up @@ -125,6 +125,7 @@ You can contribute by creating a information file for a new library, and open a
* [PixCell8](https://play.google.com/store/apps/details?id=com.pixcell8.prod)
* [ML Manager](https://play.google.com/store/apps/details?id=com.javiersantos.mlmanager)
* [TurnMe Panorama](https://play.google.com/store/apps/details?id=com.bezine.panosphere)
* [Navig'Tours](https://play.google.com/store/apps/details?id=com.codetroopers.transport.tours)


#Developed By
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

VERSION_NAME=5.2.4
VERSION_CODE=524
VERSION_NAME=5.2.5
VERSION_CODE=525
GROUP=com.mikepenz

POM_DESCRIPTION=AboutLibraries Library
Expand Down
10 changes: 5 additions & 5 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ android {
defaultConfig {
minSdkVersion 10
targetSdkVersion 23
versionCode 524
versionName '5.2.4'
versionCode 525
versionName '5.2.5'
}

buildTypes {
Expand All @@ -26,7 +26,7 @@ android {
apply from: 'gradle-mvn-push.gradle'

dependencies {
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:cardview-v7:23.0.1'
compile 'com.android.support:recyclerview-v7:23.0.1'
compile 'com.android.support:appcompat-v7:23.1.0'
compile 'com.android.support:cardview-v7:23.1.0'
compile 'com.android.support:recyclerview-v7:23.1.0'
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
Most modern apps feature an "Used Library"-Section and for this some information of those libs is required. As it gets annoying to copy those strings always to your app I have developed this small helper library to provide the required information.
]]>
</string>
<string name="library_AboutLibraries_libraryVersion">5.2.4</string>
<string name="library_AboutLibraries_libraryVersion">5.2.5</string>
<string name="library_AboutLibraries_libraryWebsite">https://github.com/mikepenz/AboutLibraries</string>
<string name="library_AboutLibraries_licenseId">apache_2_0</string>
<string name="library_AboutLibraries_isOpenSource">true</string>
Expand Down
6 changes: 3 additions & 3 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ android {
applicationId 'com.mikepenz.aboutlibraries.sample'
minSdkVersion 11
targetSdkVersion 23
versionCode 524
versionName '5.2.4'
versionCode 525
versionName '5.2.5'

applicationVariants.all { variant ->
variant.outputs.each { output ->
Expand Down Expand Up @@ -56,7 +56,7 @@ dependencies {
compile 'com.fima.cardsui:library:1.+@aar'
compile project(':library')

compile('com.mikepenz:materialdrawer:4.0.8@aar') {
compile('com.mikepenz:materialdrawer:4.3.6@aar') {
transitive = true
}
}

0 comments on commit 5aee3f6

Please sign in to comment.