Skip to content

Commit 324898d

Browse files
committed
Fix javadoc generation
1 parent f726a87 commit 324898d

File tree

4 files changed

+17
-14
lines changed

4 files changed

+17
-14
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
google()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:3.4.0'
9+
classpath 'com.android.tools.build:gradle:3.4.1'
1010
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.4'
1111
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
1212
// NOTE: Do not place your application dependencies here; they belong

recyclerview-swipedecorator/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ int VERSION_CODE = 4
44
String VERSION_NAME = "1.2"
55

66
android {
7-
compileSdkVersion 27
7+
compileSdkVersion 28
88

99
defaultConfig {
1010
minSdkVersion 15
11-
targetSdkVersion 27
11+
targetSdkVersion 28
1212
versionCode VERSION_CODE
1313
versionName VERSION_NAME
1414

@@ -28,8 +28,8 @@ dependencies {
2828
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
2929
exclude group: 'com.android.support', module: 'support-annotations'
3030
})
31-
implementation 'com.android.support:appcompat-v7:27.1.1'
32-
implementation 'com.android.support:recyclerview-v7:27.1.1'
31+
implementation 'com.android.support:appcompat-v7:28.0.0'
32+
implementation 'com.android.support:recyclerview-v7:28.0.0'
3333
testImplementation 'junit:junit:4.12'
3434
}
3535

recyclerview-swipedecorator/src/main/java/it/xabaras/android/recyclerview/swipedecorator/RecyclerViewSwipeDecorator.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ public Builder(Context context , Canvas canvas, RecyclerView recyclerView, Recyc
352352
}
353353

354354
/**
355-
* Adds a background color to both swiping directions
355+
* Add a background color to both swiping directions
356356
* @param color A single color value in the form 0xAARRGGBB
357357
* @return This instance of @RecyclerViewSwipeDecorator.Builder
358358
*/
@@ -374,6 +374,7 @@ public Builder addActionIcon(int drawableId) {
374374
/**
375375
* Set the tint color for either (left/right) action icons
376376
* @param color a color in ARGB format (e.g. 0xFF0000FF for blue)
377+
* @return This instance of @RecyclerViewSwipeDecorator.Builder
377378
*/
378379
public Builder setActionIconTint(int color) {
379380
mDecorator.setActionIconTint(color);
@@ -401,8 +402,9 @@ public Builder addSwipeRightActionIcon(int drawableId) {
401402
}
402403

403404
/**
404-
* Set the tint color for action icon drawn while swiping right
405+
* Set the tint color for action icon shown while swiping right
405406
* @param color a color in ARGB format (e.g. 0xFF0000FF for blue)
407+
* @return This instance of @RecyclerViewSwipeDecorator.Builder
406408
*/
407409
public Builder setSwipeRightActionIconTint(int color) {
408410
mDecorator.setSwipeRightActionIconTint(color);
@@ -471,8 +473,9 @@ public Builder addSwipeLeftActionIcon(int drawableId) {
471473
}
472474

473475
/**
474-
* Set the tint color for action icon drawn while swiping left
476+
* Set the tint color for action icon shown while swiping left
475477
* @param color a color in ARGB format (e.g. 0xFF0000FF for blue)
478+
* @return This instance of @RecyclerViewSwipeDecorator.Builder
476479
*/
477480
public Builder setSwipeLeftActionIconTint(int color) {
478481
mDecorator.setSwipeLeftActionIconTint(color);

sample/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 27
4+
compileSdkVersion 28
55
defaultConfig {
66
applicationId "it.xabaras.android.recyclerview.swipedecorator.sample"
77
minSdkVersion 15
8-
targetSdkVersion 27
8+
targetSdkVersion 28
99
versionCode 1
1010
versionName "1.0"
1111
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
@@ -19,13 +19,13 @@ android {
1919
}
2020

2121
dependencies {
22-
compile fileTree(dir: 'libs', include: ['*.jar'])
22+
implementation fileTree(dir: 'libs', include: ['*.jar'])
2323
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
2424
exclude group: 'com.android.support', module: 'support-annotations'
2525
})
26-
implementation 'com.android.support:appcompat-v7:27.1.1'
26+
implementation 'com.android.support:appcompat-v7:28.0.0'
2727
testImplementation 'junit:junit:4.12'
28-
implementation 'com.android.support:recyclerview-v7:27.1.1'
29-
implementation 'com.android.support:design:27.1.1'
28+
implementation 'com.android.support:recyclerview-v7:28.0.0'
29+
implementation 'com.android.support:design:28.0.0'
3030
implementation project(':recyclerview-swipedecorator')
3131
}

0 commit comments

Comments
 (0)