We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67cf5b1 commit 24949ceCopy full SHA for 24949ce
1 file changed
mpp-library/build.gradle
@@ -8,6 +8,27 @@ android {
8
minSdkVersion 21
9
targetSdkVersion 28
10
}
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
32
33
34
kotlin {
0 commit comments