Wizard: add configuration for Android MPP target

This commit is contained in:
Ilya Kirillov
2020-02-20 21:30:59 +03:00
parent 3eca687611
commit 7e22572324
21 changed files with 347 additions and 165 deletions
@@ -1,6 +1,6 @@
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'org.jetbrains.kotlin.android' version '1.3.61'
id 'kotlin-android-extensions'
}
group = 'testGroupId'
@@ -13,8 +13,8 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.core:core-ktx:1.1.0'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk7'
}
@@ -1,6 +1,6 @@
plugins {
id("com.android.application")
id("kotlin-android")
kotlin("android") version "1.3.61"
id("kotlin-android-extensions")
}
group = "testGroupId"
@@ -13,8 +13,8 @@ repositories {
mavenCentral()
}
dependencies {
implementation("androidx.appcompat:appcompat:1.1.0")
implementation("androidx.core:core-ktx:1.1.0")
implementation("androidx.appcompat:appcompat:1.1.0")
implementation("androidx.constraintlayout:constraintlayout:1.1.3")
implementation(kotlin("stdlib-jdk7"))
}
@@ -1,14 +1,3 @@
buildscript {
repositories {
gradlePluginPortal()
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.61'
}
}
group = 'testGroupId'
version = '1.0-SNAPSHOT'
@@ -1,14 +1,3 @@
buildscript {
repositories {
gradlePluginPortal()
google()
jcenter()
}
dependencies {
classpath("com.android.tools.build:gradle:3.2.1")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.61")
}
}
group = "testGroupId"
version = "1.0-SNAPSHOT"