summaryrefslogtreecommitdiff
path: root/build-system/integration-test/test-projects/kotlinMultiplatform/kmpSecondLib/build.gradle.kts
blob: 47ecd5418d46e0aa618f2efcdb566dc2d345c857 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
plugins {
  id("org.jetbrains.kotlin.multiplatform")
  id("com.android.experimental.kotlin.multiplatform.library")
}

kotlin {
  androidPrototype {
    options {
      namespace = "com.example.kmpsecondlib"
      compileSdk = property("latestCompileSdk") as Int
      minSdk = 22
    }
  }
}