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

Commit

Permalink
Fix Gradle Kotlin module config that was preventing extension functio…
Browse files Browse the repository at this point in the history
…ns from resolving in consumers. Resolves #1607.
  • Loading branch information
afollestad committed Sep 17, 2018
1 parent f28ae30 commit 93d4ac2
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions color/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ android {
]
}

packagingOptions {
exclude 'META-INF/color_release.kotlin_module'
compileOptions {
kotlinOptions.freeCompilerArgs += ['-module-name', "com.afollestad.material-dialogs:color"]
}
}

Expand Down
4 changes: 2 additions & 2 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ android {
]
}

packagingOptions {
exclude 'META-INF/core_release.kotlin_module'
compileOptions {
kotlinOptions.freeCompilerArgs += ['-module-name', "com.afollestad.material-dialogs:core"]
}
}

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 : 16,
compileSdk : 28,
buildTools : '28.0.2',
publishVersion : '2.0.0-alpha10',
publishVersionCode: 209,
publishVersion : '2.0.0-alpha11',
publishVersionCode: 210,

gradlePlugin : '3.1.4',
spotlessPlugin : '3.14.0',
Expand Down
4 changes: 2 additions & 2 deletions files/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ android {
]
}

packagingOptions {
exclude 'META-INF/files_release.kotlin_module'
compileOptions {
kotlinOptions.freeCompilerArgs += ['-module-name', "com.afollestad.material-dialogs:files"]
}
}

Expand Down
4 changes: 2 additions & 2 deletions input/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ android {
]
}

packagingOptions {
exclude 'META-INF/input_release.kotlin_module'
compileOptions {
kotlinOptions.freeCompilerArgs += ['-module-name', "com.afollestad.material-dialogs:input"]
}
}

Expand Down

0 comments on commit 93d4ac2

Please sign in to comment.