Skip to content

Commit

Permalink
fix: not including hal when posMode is set
Browse files Browse the repository at this point in the history
  • Loading branch information
tryvin committed Aug 3, 2022
1 parent cf189c7 commit 065d161
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/dynamic-hal.gradle
Expand Up @@ -2,7 +2,7 @@ def stone_sdk_version = "4.1.1"

String posMode = rootProject.ext.has('posMode') ? rootProject.ext.get('posMode') : (
project.properties.containsKey('StonePos_posMode') ?
project.properties['StonePos_posMode'] : (System.getenv('StonePos_posMode') || 'pos')
project.properties['StonePos_posMode'] : (System.getenv('StonePos_posMode') ? System.getenv('StonePos_posMode') : 'pos')
)

String includeIngenico = rootProject.ext.has('includeIngenico') ? rootProject.ext.get('includeIngenico') : (
Expand Down

0 comments on commit 065d161

Please sign in to comment.