Update build.gradle

This commit is contained in:
Him188 2019-11-15 17:44:04 +08:00
parent e8d9167097
commit c271e3402e
2 changed files with 1 additions and 20 deletions

View File

@ -9,7 +9,7 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.2'
classpath 'com.android.tools.build:gradle:3.6.0-alpha03'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlinx:atomicfu-gradle-plugin:$atomicfu_version"
}

View File

@ -1,19 +0,0 @@
package org.konan.multiplatform
import org.greeting.Greeting
import org.junit.Assert.assertEquals
import org.junit.Test
import org.junit.runner.RunWith
import org.junit.runners.JUnit4
@RunWith(JUnit4::class)
class GreetingTest {
@Test
fun `should print hello android from android mpp`() {
assertEquals(Greeting().greeting(), "Hello, Android")
}
}
// Note that common tests for calculator (i.e. `CalculatorTest`) can be run from `greeting`
// with `test` Gradle task.