summaryrefslogtreecommitdiff
path: root/build-system/integration-test/test-projects/kotlinMultiplatform/androidLib/build.gradle.kts
diff options
context:
space:
mode:
Diffstat (limited to 'build-system/integration-test/test-projects/kotlinMultiplatform/androidLib/build.gradle.kts')
-rw-r--r--build-system/integration-test/test-projects/kotlinMultiplatform/androidLib/build.gradle.kts29
1 files changed, 29 insertions, 0 deletions
diff --git a/build-system/integration-test/test-projects/kotlinMultiplatform/androidLib/build.gradle.kts b/build-system/integration-test/test-projects/kotlinMultiplatform/androidLib/build.gradle.kts
new file mode 100644
index 0000000000..e36c688310
--- /dev/null
+++ b/build-system/integration-test/test-projects/kotlinMultiplatform/androidLib/build.gradle.kts
@@ -0,0 +1,29 @@
+plugins {
+ id("com.android.library")
+}
+android {
+ namespace = "com.example.androidlib"
+
+ compileSdk = property("latestCompileSdk") as Int
+
+ defaultConfig {
+ minSdk = 21
+ targetSdk = property("latestCompileSdk") as Int
+ }
+
+ flavorDimensions("type", "mode")
+ productFlavors {
+ create("typeone") {
+ dimension = "type"
+ }
+ create("typetwo") {
+ dimension = "type"
+ }
+ create("modeone") {
+ dimension = "mode"
+ }
+ create("modetwo") {
+ dimension = "mode"
+ }
+ }
+}