File tree Expand file tree Collapse file tree 5 files changed +6
-5
lines changed
allure-kotlin-android/src/main/kotlin/io/qameta/allure/android/internal Expand file tree Collapse file tree 5 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import java.io.File
17
17
*/
18
18
@SuppressLint(" DefaultLocale" )
19
19
internal fun isDeviceTest (): Boolean =
20
- System .getProperty(" java.runtime.name" )?.toLowerCase ()?.contains(" android" ) ? : false
20
+ System .getProperty(" java.runtime.name" )?.lowercase ()?.contains(" android" ) ? : false
21
21
22
22
internal fun requestExternalStoragePermissions () {
23
23
when {
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ description = "Allure Kotlin Commons"
3
3
dependencies {
4
4
api(project(" :allure-kotlin-model" ))
5
5
implementation(kotlin(" reflect" ))
6
- implementation(" org.jetbrains.kotlinx:kotlinx-serialization-json:${Versions .kontlinxSerialization } " )
6
+ implementation(" org.jetbrains.kotlinx:kotlinx-serialization-json:${Versions .kotlinxSerialization } " )
7
7
testImplementation(" io.github.benas:random-beans:${Versions .randomBeans} " )
8
8
testImplementation(" io.github.glytching:junit-extensions:${Versions .junitExtensions} " )
9
9
testImplementation(" org.assertj:assertj-core:${Versions .assertJ} " )
Original file line number Diff line number Diff line change @@ -5,5 +5,5 @@ plugins {
5
5
}
6
6
7
7
dependencies {
8
- implementation(" org.jetbrains.kotlinx:kotlinx-serialization-json:${Versions .kontlinxSerialization } " )
8
+ implementation(" org.jetbrains.kotlinx:kotlinx-serialization-json:${Versions .kotlinxSerialization } " )
9
9
}
Original file line number Diff line number Diff line change 1
1
object Versions {
2
2
const val kotlin = " 1.5.0"
3
- const val kontlinxSerialization = " 1.2.1"
3
+ const val kotlinxSerialization = " 1.2.1"
4
4
5
5
const val junit4 = " 4.13.2"
6
6
const val junit5 = " 5.5.2"
@@ -13,7 +13,7 @@ object Versions {
13
13
const val randomBeans = " 3.9.0"
14
14
15
15
object Android {
16
- const val gradlePlugin = " 4.1.3 "
16
+ const val gradlePlugin = " 4.2.1 "
17
17
18
18
const val compileSdk = 30
19
19
const val targetSdk = 30
Original file line number Diff line number Diff line change @@ -4,3 +4,4 @@ android.useAndroidX=true
4
4
org.gradle.caching =true
5
5
org.gradle.parallel =true
6
6
org.gradle.vfs.watch =true
7
+ org.gradle.jvmargs =-Xmx4096M
You can’t perform that action at this time.
0 commit comments