Skip to content

Commit

Permalink
bug fixing
Browse files Browse the repository at this point in the history
migration to 26 SDK
update build tools to 27.0.3
update support library to 27.0.2
  • Loading branch information
vivchar committed Feb 9, 2018
1 parent 8894804 commit 7b241b7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ ext {
versionName = "1.0"
versionCode = 1
minSdkVersion = 14
targetSdkVersion = 25
compileSdkVersion = 25
buildToolsVersion = "26.0.2"
supportLibraryVersion = "25.3.1"
targetSdkVersion = 26
compileSdkVersion = 26
buildToolsVersion = "27.0.3"
supportLibraryVersion = "27.0.2"
constraintVersion = "1.0.2"
retrofit2Version = "2.3.0"
glideVersion = "4.0.0"
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ org.gradle.jvmargs=-Xmx1536m
# This option should only be used with decoupled projects. More details, visit
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
VERSION_NAME=2.4.1
VERSION_CODE=26
VERSION_NAME=2.5.0
VERSION_CODE=27
GROUP=com.github.vivchar

POM_DESCRIPTION=A single adapter with multiple view types for the whole project
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public interface ViewFinder {
@NonNull
ViewFinder setVisibility(@IdRes int ID, int visibility);
@NonNull
ViewFinder setAlpha(@IdRes int ID, int alpha);
ViewFinder setAlpha(@IdRes int ID, float alpha);
@NonNull
ViewFinder addView(@IdRes int ID, View child);
@NonNull
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ public ViewFinder setVisibility(final int ID, final int visibility) {

@NonNull
@Override
public ViewFinder setAlpha(final int ID, final int alpha) {
public ViewFinder setAlpha(final int ID, final float alpha) {
find(ID).setAlpha(alpha);
return this;
}
Expand Down

0 comments on commit 7b241b7

Please sign in to comment.