Skip to content

Commit

Permalink
test: Update plugin/__tests__/fixtures/buildGradleFiles
Browse files Browse the repository at this point in the history
  • Loading branch information
Konstantinos Koulaxizis committed Sep 19, 2024
1 parent bfaee9b commit 5b39749
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions plugin/__tests__/fixtures/buildGradleFiles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ android {
versionCode 34
versionName "1.16.2"
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
enableAmazonDrm "boolean", "ENABLE_AMAZON_DRM", getExtOrDefault("enableAmazonDrm")`;
buildConfigField "boolean", "ENABLE_AMAZON_DRM", getExtOrDefault("enableAmazonDrm")`;

const appBuildGradleWithPlayStoreIAP = `
apply plugin: "com.android.application"
Expand All @@ -44,7 +44,8 @@ missingDimensionStrategy "store", "play"
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 34
versionName "1.16.2"
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()`;
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
buildConfigField "boolean", "ENABLE_AMAZON_DRM", getExtOrDefault("enableAmazonDrm")`;

const appBuildGradleWithAmazonStoreIAP = `
apply plugin: "com.android.application"
Expand Down

0 comments on commit 5b39749

Please sign in to comment.