Skip to content

Commit

Permalink
Fix app/library build.gradle
Browse files Browse the repository at this point in the history
  • Loading branch information
eonj committed Nov 1, 2017
1 parent 0dcf163 commit 151f6e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Expand Up @@ -30,8 +30,8 @@ dependencies {
compile 'com.android.support:appcompat-v7:26.+'
testCompile 'junit:junit:4.12'
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
debugCompile project(path: ':library', configuration: 'debugCompile')
releaseCompile project(path: ':library', configuration: 'releaseCompile')
debugCompile project(path: ':library', configuration: 'debug')
releaseCompile project(path: ':library', configuration: 'release')
}
repositories {
mavenCentral()
Expand Down
1 change: 1 addition & 0 deletions library/build.gradle
Expand Up @@ -2,6 +2,7 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'

android {
publishNonDefault true
enforceUniquePackageName = false
compileSdkVersion 26
buildToolsVersion "25.0.3"
Expand Down

0 comments on commit 151f6e4

Please sign in to comment.