| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 8e47184 commit 23aa6c5
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -400,7 +400,11 @@ SnapshotGenerator.prototype.buildCSource = function (androidArch, blobInputDir, | |||
| 400 | 400 | } | |
| 401 | 401 | ||
| 402 | 402 | SnapshotGenerator.prototype.getRecommendedNdkWarning = function (localNdkRevision, recommendedAndroidNdkRevision) { | |
| 403 | - return `The provided Android NDK is v${localNdkRevision} while the recommended one is v${recommendedAndroidNdkRevision}`; | ||
| 403 | + if (localNdkRevision) { | ||
| 404 | + return `The provided Android NDK is v${localNdkRevision} while the required one is v${recommendedAndroidNdkRevision}`; | ||
| 405 | + } else { | ||
| 406 | + return `The provided Android NDK version is different than the required one - v${recommendedAndroidNdkRevision}`; | ||
| 407 | + } | ||
| 404 | 408 | } | |
| 405 | 409 | ||
| 406 | 410 | SnapshotGenerator.prototype.runMksnapshotTool = function (tool, mksnapshotParams, inputFile, snapshotInDocker, snapshotToolsPath, buildCSource) { | |
| Back | FazBrowse Home | New Git URL |
0 commit comments