Skip to content

Commit

Permalink
detail screen ui test
Browse files Browse the repository at this point in the history
  • Loading branch information
ozcanalasalvar committed Oct 2, 2023
1 parent c899b4a commit df7db18
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
13 changes: 13 additions & 0 deletions .idea/androidTestResultsUserPreferences.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ android {
buildTypes {
debug {
isDebuggable = true
//applicationIdSuffix = ".debug"
applicationIdSuffix = ".debug"
}
release {
isDebuggable = false
Expand All @@ -41,6 +41,12 @@ android {
excludes.add("/META-INF/{AL2.0,LGPL2.1}")
}
}

testOptions {
unitTests {
isIncludeAndroidResources = true
}
}
}

dependencies {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ internal fun Project.configureKotlinAndroid(
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}

kotlinOptions {
Expand Down

0 comments on commit df7db18

Please sign in to comment.