This file contains hidden or 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
| Deployment on App Store and Play Store | |
| Deployment for App Store: | |
| Apple TestFlight App upload(iTunes connect) | |
| 1. 1st you have to integrate developer account to Xcode. | |
| 2. Then open your app through iOS platform file name with xcworkspace extension in Xcode. | |
| 3. Sign the certificates to your app and increase your version if needed. | |
| 4. Clean your build and and then make a build. If any error occur then resolve them and repeat this process until and unless build succeeded. | |
| 5. After that make archive of app which would be then ready for upload for test purpose as well as a new version. |
This file contains hidden or 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
| /** | |
| * Retrieves all the rows in the active spreadsheet that contain data and logs the | |
| * values for each row. | |
| * For more information on using the Spreadsheet API, see | |
| * https://developers.google.com/apps-script/service_spreadsheet | |
| */ | |
| function readRows() { | |
| var sheet = SpreadsheetApp.getActiveSheet(); | |
| var rows = sheet.getDataRange(); | |
| var numRows = rows.getNumRows(); |
This file contains hidden or 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
| # Example encoding of an email message in JSON | |
| { | |
| headers: [ # in an array since order matters | |
| { name: 'Subject', value: 'An email' }, | |
| { name: 'Date', value: 'Thu, 4 Mar 2010 15:35:32 -0800' }, | |
| { name: 'From', value: '[email protected]' }, | |
| { name: 'To', value: '[email protected]' } | |
| { name: 'Sender', value: '[email protected]' } | |
| { name: 'Reply-to', value: '[email protected]' } |
NewerOlder