Skip to content

Commit

Permalink
Update dependencies and fix bad rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
jinatonic committed Apr 19, 2018
1 parent 65fcb60 commit 4c6b6cb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.0'
classpath 'com.android.tools.build:gradle:3.1.1'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand Down
6 changes: 3 additions & 3 deletions ticker-sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.application'

android {
compileSdkVersion 27
buildToolsVersion '26.0.2'
buildToolsVersion '27.0.3'

defaultConfig {
applicationId "com.robinhood.ticker.sample"
Expand All @@ -14,6 +14,6 @@ android {
dependencies {
implementation project(':ticker')

implementation 'com.android.support:appcompat-v7:27.0.2'
implementation 'com.android.support:recyclerview-v7:27.0.2'
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:recyclerview-v7:27.1.1'
}
6 changes: 3 additions & 3 deletions ticker/build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 26
buildToolsVersion '26.0.2'
compileSdkVersion 27
buildToolsVersion '27.0.3'

resourcePrefix 'ticker_'

defaultConfig {
minSdkVersion 12
targetSdkVersion 26
targetSdkVersion 27
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ void setCharacterLists(String... characterLists) {
}
}

List<char[]> getCharacterLists() {
TickerCharacterList[] getCharacterLists() {
return characterLists;
}

Expand Down

0 comments on commit 4c6b6cb

Please sign in to comment.