start add recycler view

This commit is contained in:
2020-10-28 13:51:16 +06:00
parent cc18f58e4c
commit 347e9c32fe
5 changed files with 100 additions and 0 deletions

30
mppJsProject Normal file
View File

@@ -0,0 +1,30 @@
project.version = "$version"
project.group = "$group"
apply from: "$publishGradlePath"
kotlin {
js (BOTH) {
browser()
}
sourceSets {
commonMain {
dependencies {
implementation kotlin('stdlib')
}
}
commonTest {
dependencies {
implementation kotlin('test-common')
implementation kotlin('test-annotations-common')
}
}
jsTest {
dependencies {
implementation kotlin('test-js')
implementation kotlin('test-junit')
}
}
}
}