Skip to content

Commit

Permalink
AIRHelper: add support for AIR adt -tsa option
Browse files Browse the repository at this point in the history
Example:

<config:air tsa="http://timestamp.digicert.com"/>

Required to workaround "Could not generate timestamp: Connection reset" error from adt with default timestamp URL.
  • Loading branch information
joshtynjala committed Oct 17, 2024
1 parent 7dc3718 commit 0e974fd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/lime/tools/AIRHelper.hx
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,12 @@ class AIRHelper
signingOptions.push("samplePassword");
}

if (project.config.exists("air.tsa"))
{
signingOptions.push("-tsa");
signingOptions.push(project.config.getString("air.tsa"));
}

var args = ["-package"];

// TODO: Is this an old workaround fixed in newer AIR SDK?
Expand Down

0 comments on commit 0e974fd

Please sign in to comment.