Skip to content
This repository has been archived by the owner on Oct 2, 2018. It is now read-only.

Commit

Permalink
* update libraries
Browse files Browse the repository at this point in the history
* update gradle build tools
* use lib version from gradle
  • Loading branch information
mikepenz committed Jan 6, 2018
1 parent 3d7cd56 commit cf03ec2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0'
classpath 'com.android.tools.build:gradle:3.0.1'
classpath 'com.novoda:bintray-release:0.7.0'
}
}

ext {
compileSdkVersion = 27
buildToolsVersion = "27.0.1"
supportLibVersion = "27.0.1"
buildToolsVersion = "27.0.3"
supportLibVersion = "27.0.2"
}

allprojects {
Expand Down
5 changes: 3 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ android {
targetSdkVersion 27
versionCode 6010
versionName '6.0.1'


resValue "string", "aboutlibrary_lib_version", "${versionName}"
resValue "string", "ext_support_lib_version", "${rootProject.ext.supportLibVersion}"
}

Expand Down Expand Up @@ -43,5 +44,5 @@ dependencies {
// used to fill the RecyclerView with the items
// and provides single and multi selection, expandable items
// https://github.com/mikepenz/FastAdapter
compile 'com.mikepenz:fastadapter:3.0.4@aar'
compile 'com.mikepenz:fastadapter:3.0.5@aar'
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
Most modern apps feature a "Used Library"-section, which requires information about those respective libs. As it gets annoying to always copy those strings to your app, I have developed this small helper library to provide the required information.
]]>
</string>
<string name="library_AboutLibraries_libraryVersion">6.0.1</string>
<string name="library_AboutLibraries_libraryVersion">@string/aboutlibrary_lib_version</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

0 comments on commit cf03ec2

Please sign in to comment.