Skip to content

Commit

Permalink
fix(android): bad Titanium version on app startup (#11742)
Browse files Browse the repository at this point in the history
- Regression as of 9.1.0. Was caught before release.

Fixes TIMOB-27916
  • Loading branch information
jquick-axway committed Jun 3, 2020
1 parent 571b2e6 commit 08227a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions android/titanium/libv8-services.js
Expand Up @@ -53,11 +53,11 @@ async function createSnapshot() {
const rollupOutputFilePath = path.join(rollupOutputDirPath, 'ti.main.js');
await fs.ensureDir(rollupOutputDirPath);

const program = { args: [ 'ios' ] };
const program = { args: [ 'android' ] };
const mainBuilder = new Builder(program);
await mainBuilder.ensureGitHash();
const androidBuilder = new AndroidBuilder({
sdkVersion: require('../package.json').version,
sdkVersion: require('../../package.json').version,
gitHash: program.gitHash,
timestamp: program.timestamp
});
Expand Down

0 comments on commit 08227a9

Please sign in to comment.