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
/** | |
* We are combining unit and intrumentation test reports | |
* if no one uses instrumentation then delete createDebugCoverageReport | |
* and it output outputs/code-coverage/connected/*coverage.ec | |
*/ | |
/** | |
* Since jacoco does not support android out of the box we create a custom task per variant | |
* for test coverage.All the coverage reports are created in the root projects build directory. | |
* These are then archived in the pages folder which is then deployed on the project. |
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
#!/usr/local/bin/python3 | |
import sys, getopt | |
import glob | |
import csv | |
import os | |
dictCSV = "androidx-class-mapping.csv" | |
projectPath = os.getcwd() |
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
Make a subdirectory named packages/mynpms in your project. | |
Add a package.js that looks something like this: | |
Package.describe({ | |
summary: "Custom app NPM dependencies" | |
}); | |
Npm.depends({ | |
nconf: '0.6.7', | |
feedparser: '0.16.1' |