-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from jquick-axway/TIMOB-27730
feat(android): migrate to gradle and AndroidX Fixes TIMOB-27730
- Loading branch information
Showing
26 changed files
with
6,550 additions
and
192 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
node_modules | ||
|
||
android/bin/ | ||
android/build/ | ||
android/dist/ | ||
ios/build/ | ||
ios/dist/ | ||
|
||
# These should eventually be linted as well | ||
android/example/ | ||
ios/example/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"extends": [ "axway/env-titanium", "axway/env-node" ], | ||
"parserOptions": { | ||
"ecmaVersion": 2015, | ||
"sourceType": "script" | ||
}, | ||
"overrides": [ | ||
{ | ||
"files": [ "dangerfile.js" ], | ||
"parserOptions": { | ||
"ecmaVersion": 2017, | ||
"sourceType": "module" | ||
} | ||
} | ||
] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,41 @@ | ||
.DS_Store | ||
metadata.json | ||
*.zip | ||
tmp | ||
bin | ||
build | ||
|
||
*/*/modules | ||
*/*/modules* | ||
.apt_generated | ||
build.properties | ||
.gitignore | ||
.svn | ||
*.pyc | ||
*~.nib/ | ||
*.pbxuser | ||
*.perspective | ||
*.perspectivev3 | ||
*.xcworkspace/ | ||
xcuserdata | ||
*.xcuserstate | ||
xcuserdata/ | ||
build/ | ||
/android/dist | ||
ios/titanium-web-dialog.xcodeproj/project.xcworkspace/xcuserdata | ||
android/libs | ||
*.xcuserdata* | ||
|
||
.idea/ | ||
libs/ | ||
|
||
android/clean | ||
android/ant_clean | ||
android/.classpath | ||
android/.settings | ||
android/dist/ | ||
android/launch-* | ||
android/java-sources.txt | ||
nbproject | ||
/ios/metadata.json | ||
/ios/dist | ||
/ios/ti.map-iphone-*.zip | ||
|
||
node_modules/ | ||
|
||
TESTS-*.xml | ||
|
||
.vscode/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
android/documentation/ | ||
android/example/ | ||
|
||
iphone/documentation/ | ||
iphone/example/ | ||
iphone/platform/ | ||
|
||
test/ | ||
apidoc/ | ||
Jenkinsfile | ||
dangerfile.js |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
@Library('pipeline-library') _ | ||
library 'pipeline-library' | ||
|
||
def isMaster = env.BRANCH_NAME.equals('master') | ||
|
||
buildModule { | ||
// defaults: | ||
//nodeVersion = '4.7.3' // Must have version set up on Jenkins master before it can be changed | ||
//sdkVersion = '6.0.3.GA' | ||
//androidAPILevel = '23' // if changed, must install on build nodes | ||
sdkVersion = '9.0.0.v20200127103011' | ||
npmPublish = isMaster // By default it'll do github release on master anyways too | ||
iosLabels = 'osx && xcode-11' | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
dependencies { | ||
implementation 'androidx.browser:browser:1.2.0' | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* global danger, fail, message */ | ||
|
||
// requires | ||
const junit = require('@seadub/danger-plugin-junit').default; | ||
const dependencies = require('@seadub/danger-plugin-dependencies').default; | ||
const moduleLint = require('@seadub/danger-plugin-titanium-module').default; | ||
const fs = require('fs'); | ||
const path = require('path'); | ||
const ENV = process.env; | ||
|
||
// Add links to artifacts we've stuffed into the ENV.ARTIFACTS variable | ||
async function linkToArtifacts() { | ||
if (ENV.ARTIFACTS && (ENV.BUILD_STATUS === 'SUCCESS' || ENV.BUILD_STATUS === 'UNSTABLE')) { | ||
const artifacts = ENV.ARTIFACTS.split(';'); | ||
if (artifacts.length !== 0) { | ||
const artifactsListing = '- ' + artifacts.map(a => danger.utils.href(`${ENV.BUILD_URL}artifact/${a}`, a)).join('\n- '); | ||
message(`:floppy_disk: Here are the artifacts produced:\n${artifactsListing}`); | ||
} | ||
} | ||
} | ||
|
||
async function checkLintLog() { | ||
const lintLog = path.join(__dirname, 'lint.log'); | ||
if (!fs.existsSync(lintLog)) { | ||
return; | ||
} | ||
const contents = fs.readFileSync(lintLog, 'utf8'); | ||
fail('`npm run lint` failed, please check messages below for output.'); | ||
message(`:bomb: Here's the output of \`npm run lint\`:\n\`\`\`${contents}\`\`\``); | ||
} | ||
|
||
async function main() { | ||
// do a bunch of things in parallel | ||
// Specifically, anything that collects what labels to add or remove has to be done first before... | ||
await Promise.all([ | ||
junit({ pathToReport: './TESTS-*.xml' }), | ||
dependencies({ type: 'npm' }), | ||
linkToArtifacts(), | ||
checkLintLog(), | ||
moduleLint(), | ||
]); | ||
} | ||
main() | ||
.then(() => process.exit(0)) | ||
.catch(err => { | ||
fail(err.toString()); | ||
process.exit(1); | ||
}); |
Oops, something went wrong.