-
Notifications
You must be signed in to change notification settings - Fork 15
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 #20 from vip-git/android-context-fix
Android Runtime issues resolved
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 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 |
---|---|---|
|
@@ -8,9 +8,9 @@ var fs = require("file-system"); | |
exports.available = function () { | ||
return new Promise(function (resolve, reject) { | ||
try { | ||
var uri = android.net.Uri.fromParts("mailto", "[email protected]", null); | ||
var uri = android.net.Uri.fromParts("mailto", "", null); | ||
var intent = new android.content.Intent(android.content.Intent.ACTION_SENDTO, uri); | ||
var packageManager = com.tns.NativeScriptApplication.getInstance().getPackageManager(); | ||
var packageManager = application.android.context.getPackageManager(); | ||
var nrOfMailApps = packageManager.queryIntentActivities(intent, 0).size(); | ||
resolve(nrOfMailApps > 0); | ||
} catch (ex) { | ||
|
@@ -184,4 +184,4 @@ var toStringArray = function (arg) { | |
arr[i] = arg[i]; | ||
} | ||
return arr; | ||
}; | ||
}; |
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