Skip to content
This repository has been archived by the owner on May 17, 2023. It is now read-only.

Commit

Permalink
Version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
afollestad committed Sep 19, 2018
1 parent 70a529f commit 0b0db54
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 14 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Add the following to your module's `build.gradle` file:
```Gradle
dependencies {
implementation 'com.afollestad:drag-select-recyclerview:2.1.0'
implementation 'com.afollestad:drag-select-recyclerview:2.2.0'
}
```

Expand Down
4 changes: 2 additions & 2 deletions dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ ext.versions = [
minSdk : 14,
compileSdk : 28,
buildTools : '28.0.2',
publishVersion : '2.1.0',
publishVersionCode: 23,
publishVersion : '2.2.0',
publishVersionCode: 24,

gradlePlugin : '3.1.4',
kotlin : '1.2.70',
Expand Down
8 changes: 1 addition & 7 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,6 @@ android {
compileSdkVersion versions.compileSdk
buildToolsVersion versions.buildTools

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

compileOptions {
kotlinOptions.freeCompilerArgs += ['-module-name', "com.afollestad.drag-select-recyclerview"]
}
Expand All @@ -27,8 +22,7 @@ android {
}

packagingOptions {
exclude 'META-INF/library_release.kotlin_module'
exclude 'META-INF/proguard/androidx-annotations.pro'
pickFirst 'META-INF/proguard/androidx-annotations.pro'
}
}

Expand Down
7 changes: 3 additions & 4 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
buildToolsVersion versions.buildTools

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
kotlinOptions.freeCompilerArgs +=
['-module-name', "com.afollestad.drag-select-recyclerview-sample"]
}

defaultConfig {
Expand All @@ -23,8 +23,7 @@ android {
}

packagingOptions {
exclude 'META-INF/sample_release.kotlin_module'
exclude 'META-INF/proguard/androidx-annotations.pro'
pickFirst 'META-INF/proguard/androidx-annotations.pro'
}
}

Expand Down

0 comments on commit 0b0db54

Please sign in to comment.