Skip to content

Commit

Permalink
fix(android): AGP8 support
Browse files Browse the repository at this point in the history
  • Loading branch information
noomorph committed Oct 27, 2023
1 parent e2ed936 commit 61a63d8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions detox/android/detox/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ android {
if (agpVersion >= 7) {
namespace "com.wix.detox"
}
compileSdkVersion _compileSdkVersion
buildToolsVersion _buildToolsVersion
compileSdk _compileSdkVersion
buildTools = _buildToolsVersion

defaultConfig {
minSdkVersion _minSdkVersion
Expand All @@ -37,7 +37,7 @@ android {
consumerProguardFiles 'proguard-rules.pro'
}

flavorDimensions 'detox'
flavorDimensions = ['detox']
productFlavors {
full {
dimension 'detox'
Expand All @@ -52,7 +52,7 @@ android {
unitTests.returnDefaultValues = true
unitTests.all { t ->
reports {
html.enabled true
html.required true
}
testLogging {
events "passed", "skipped", "failed", "standardOut", "standardError"
Expand Down

0 comments on commit 61a63d8

Please sign in to comment.