Skip to content

Commit

Permalink
Kotlin version changed to 1.3.70.
Browse files Browse the repository at this point in the history
Gradle version changed to 3.6.1.
setTitleText and setContentText argument changed to CharSequence to set rich text.
  • Loading branch information
hakobast committed Mar 20, 2020
1 parent 38cd1c1 commit b7c64cd
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 10 deletions.
Binary file modified .idea/caches/build_file_checksums.ser
Binary file not shown.
3 changes: 3 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,14 @@ val dropdown = DropdownTextView.Builder(this)
## Download
Gradle:
```groovy
compile 'com.github.hakobast:dropdown-textview:0.3.0'
compile 'com.github.hakobast:dropdown-textview:0.3.1'
```
Maven:
```xml
<dependency>
<groupId>com.github.hakobast</groupId>
<artifactId>dropdown-textview</artifactId>
<version>0.3.0</version>
<version>0.3.1</version>
<type>pom</type>
</dependency>
```
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
buildscript {
ext.kotlin_version = '1.3.50'
ext.kotlin_version = '1.3.70'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
classpath 'com.android.tools.build:gradle:3.6.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
Expand Down
2 changes: 1 addition & 1 deletion dropdown-textview/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ext {
siteUrl = 'https://github.com/hakobast/DropdownTextView'
gitUrl = 'https://github.com/hakobast/DropdownTextView.git'

libraryVersion = '0.3.0'
libraryVersion = '0.3.1'

developerId = 'hakobast'
developerName = 'Hakob Astvatsatryan'
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Tue Oct 01 14:26:37 AMT 2019
#Fri Mar 20 15:46:28 ART 2020
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip

0 comments on commit b7c64cd

Please sign in to comment.