Skip to content

Commit

Permalink
fix: updated function to access secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
dg1223 committed Jul 17, 2023
1 parent f761aaa commit 3f58a8b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ newArchEnabled=false
# If set to false, you will be using JSC instead.
hermesEnabled=true

MYAPP_UPLOAD_KEY_ALIAS=${System.getenv('MYAPP_UPLOAD_KEY_ALIAS')}
MYAPP_UPLOAD_STORE_PASSWORD=${System.getenv('MYAPP_UPLOAD_STORE_PASSWORD')}
MYAPP_UPLOAD_KEY_PASSWORD=${System.getenv('MYAPP_UPLOAD_KEY_PASSWORD')}
MYAPP_UPLOAD_KEY_ALIAS=${project.getProperty('MYAPP_UPLOAD_KEY_ALIAS')}
MYAPP_UPLOAD_STORE_PASSWORD=${project.getProperty('MYAPP_UPLOAD_STORE_PASSWORD')}
MYAPP_UPLOAD_KEY_PASSWORD=${project.getProperty('MYAPP_UPLOAD_KEY_PASSWORD')}

0 comments on commit 3f58a8b

Please sign in to comment.