This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Build configuration for Circle CI | |
# | |
general: | |
artifacts: | |
- /home/ubuntu/your-app-name/app/build/outputs/apk/ | |
machine: | |
environment: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. Use openssl | |
openssl smime -in /path/to/your.mobileprovision -inform der -verify | |
2. Use security command | |
security cms -Di /path/to/your.mobileprovision |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var AWS = require('aws-sdk'); | |
var region = "us-west-2"; | |
var accessKeyId = process.env.DYNAMODB_ACCESS_KEY_ID; | |
var secretAccessKey = process.env.DYNAMODB_SECRET_ACCESS_KEY; | |
var tableName = "your table name"; | |
var dynamoDB = new AWS.DynamoDB({ | |
region: region, | |
accessKeyId: accessKeyId, |