Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kot331107 committed Nov 27, 2024
1 parent 95fdea6 commit 087d461
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions android/src/amazon/java/com/dooboolab/rniap/RNIapAmazonModule.kt
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,14 @@ class RNIapAmazonModule(
@ReactMethod
fun verifyLicense(promise: Promise) {
Log.d(
TAG, "Amazon's DRM is ${
if (BuildConfig.IS_AMAZON_DRM_ENABLED)
"enabled" else "disabled"
}"
TAG,
"Amazon's DRM is ${
if (BuildConfig.IS_AMAZON_DRM_ENABLED) {
"enabled"
} else {
"disabled"
}
}",
)

if (!BuildConfig.IS_AMAZON_DRM_ENABLED) {
Expand Down

0 comments on commit 087d461

Please sign in to comment.