Skip to content

Commit 06fcc6f

Browse files
authored
Merge pull request #28 from Kotlin/fix_iosTest_xcode11
Updated several things to the latest versions
2 parents b550027 + c1e474d commit 06fcc6f

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
// KOTLIN_VERSION
3-
ext.kotlin_version = '1.3.41'
3+
ext.kotlin_version = '1.3.61'
44

55
repositories {
66
google()
@@ -9,7 +9,7 @@ buildscript {
99
maven { url 'https://dl.bintray.com/kotlin/kotlin-eap' }
1010
}
1111
dependencies {
12-
classpath 'com.android.tools.build:gradle:3.4.0'
12+
classpath 'com.android.tools.build:gradle:3.5.2'
1313
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1414
}
1515
}
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Mon Apr 22 10:27:43 MSK 2019
1+
#Thu Nov 28 14:56:59 MSK 2019
22
distributionBase=GRADLE_USER_HOME
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
34
distributionPath=wrapper/dists
4-
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip
6+
zipStoreBase=GRADLE_USER_HOME

greeting/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ task iosTest {
9393
doLast {
9494
def binary = kotlin.targets.ios.binaries.getTest('DEBUG').outputFile
9595
exec {
96-
commandLine 'xcrun', 'simctl', 'spawn', device, binary.absolutePath
96+
commandLine 'xcrun', 'simctl', 'spawn', '--standalone', device, binary.absolutePath
9797
}
9898
}
9999
}

0 commit comments

Comments
 (0)