Add regression test for MPP android source set with resources
This commit is contained in:
+24
@@ -0,0 +1,24 @@
|
||||
buildscript {
|
||||
def kotlinVersion = "{{kotlin_plugin_version}}"
|
||||
|
||||
|
||||
ext.kotlin_version = "$kotlinVersion"
|
||||
repositories {
|
||||
{{kotlin_plugin_repositories}}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:3.5.2'
|
||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||
}
|
||||
}
|
||||
|
||||
allprojects {
|
||||
repositories {
|
||||
{{kotlin_plugin_repositories}}
|
||||
}
|
||||
}
|
||||
|
||||
task clean(type: Delete) {
|
||||
delete rootProject.buildDir
|
||||
}
|
||||
+21
@@ -0,0 +1,21 @@
|
||||
plugins {
|
||||
id 'kotlin-multiplatform'
|
||||
}
|
||||
|
||||
apply plugin: 'com.android.library'
|
||||
|
||||
android {
|
||||
compileSdkVersion 28
|
||||
buildToolsVersion '28.0.3'
|
||||
defaultConfig {
|
||||
minSdkVersion 15
|
||||
targetSdkVersion 28
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
kotlin {
|
||||
android("android")
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
include(":multiplatformb")
|
||||
Reference in New Issue
Block a user