Skip to content

Commit

Permalink
l1-s7 move android sourceset to multiplatform directories
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex009 committed Sep 5, 2019
1 parent 67cf5b1 commit 24949ce
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions mpp-library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,27 @@ android {
minSdkVersion 21
targetSdkVersion 28
}

sourceSets {
main {
setRoot('src/androidMain')
}
release {
setRoot('src/androidMainRelease')
}
debug {
setRoot('src/androidMainDebug')
}
test {
setRoot('src/androidUnitTest')
}
testRelease {
setRoot('src/androidUnitTestRelease')
}
testDebug {
setRoot('src/androidUnitTestDebug')
}
}
}

kotlin {
Expand Down

0 comments on commit 24949ce

Please sign in to comment.