Skip to content

Commit 24949ce

Browse files
committed
l1-s7 move android sourceset to multiplatform directories
1 parent 67cf5b1 commit 24949ce

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

mpp-library/build.gradle

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,27 @@ android {
88
minSdkVersion 21
99
targetSdkVersion 28
1010
}
11+
12+
sourceSets {
13+
main {
14+
setRoot('src/androidMain')
15+
}
16+
release {
17+
setRoot('src/androidMainRelease')
18+
}
19+
debug {
20+
setRoot('src/androidMainDebug')
21+
}
22+
test {
23+
setRoot('src/androidUnitTest')
24+
}
25+
testRelease {
26+
setRoot('src/androidUnitTestRelease')
27+
}
28+
testDebug {
29+
setRoot('src/androidUnitTestDebug')
30+
}
31+
}
1132
}
1233

1334
kotlin {

0 commit comments

Comments
 (0)