This file contains hidden or 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
import {ReplaySubject} from "rxjs"; | |
import {AndroidActivityCallbacks, setActivityCallbacks} from "ui/frame"; | |
export let AndroidOnRouteToURL = new ReplaySubject<string>(); | |
@JavaProxy("org.myApp.MainActivity") | |
export class ActivityAndroid extends android.support.v7.app.AppCompatActivity | |
{ | |
private _callbacks: AndroidActivityCallbacks; | |
This file contains hidden or 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
{ | |
"description": "NativeScript Application", | |
"license": "SEE LICENSE IN <your-license-filename>", | |
"readme": "NativeScript Application", | |
"repository": "<fill-your-repository-here>", | |
"nativescript": { | |
"id": "com.davidshield.dsapp1", | |
"tns-ios": { | |
"version": "4.1.0" | |
}, |
This file contains hidden or 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
<?xml version="1.0"?> | |
<configuration> | |
<appSettings> | |
<add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" /> | |
</appSettings> | |
<system.web> | |
<compilation debug="true" targetFramework="4.5.2" /> | |
<httpRuntime targetFramework="4.5.2"/> | |
</system.web> |
This file contains hidden or 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
<?xml version="1.0"?> | |
<configuration> | |
<appSettings> | |
<add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" /> | |
</appSettings> | |
<system.web> | |
<compilation debug="true" targetFramework="4.5.2" /> | |
<httpRuntime targetFramework="4.5.2"/> | |
</system.web> |
This file contains hidden or 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
{ | |
"description": "NativeScript Application", | |
"license": "SEE LICENSE IN <your-license-filename>", | |
"readme": "NativeScript Application", | |
"repository": "<fill-your-repository-here>", | |
"nativescript": { | |
"id": "com.davidshield.dsapp1", | |
"tns-android": { | |
"version": "4.1.3" | |
} |
This file contains hidden or 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
import {ReplaySubject} from 'rxjs/ReplaySubject'; | |
import {AndroidActivityCallbacks, setActivityCallbacks} from "tns-core-modules/ui/frame"; | |
export var AndroidOnRouteToURL = new ReplaySubject<string>(); | |
@JavaProxy("org.myApp.MainActivity") | |
export class Activity extends android.support.v7.app.AppCompatActivity | |
{ | |
private _callbacks: AndroidActivityCallbacks; |
This file contains hidden or 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
"use strict"; | |
Object.defineProperty(exports, "__esModule", { value: true }); | |
var ReplaySubject_1 = require("rxjs/ReplaySubject"); | |
var frame_1 = require("tns-core-modules/ui/frame"); | |
exports.AndroidOnRouteToURL = new ReplaySubject_1.ReplaySubject(); | |
var Activity = /** @class */ (function (_super) { | |
__extends(Activity, _super); | |
function Activity() { | |
return _super !== null && _super.apply(this, arguments) || this; | |
} |
This file contains hidden or 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
import {AndroidActivityCallbacks, setActivityCallbacks} from "tns-core-modules/ui/frame"; | |
@JavaProxy("org.myApp.MainActivity") | |
export class Activity extends android.support.v7.app.AppCompatActivity | |
{ | |
private _callbacks: AndroidActivityCallbacks; | |
This file contains hidden or 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
{ | |
"nativescript": { | |
"id": "org.nativescript.bbb", | |
"tns-ios": { | |
"version": "4.2.0" | |
}, | |
"tns-android": { | |
"version": "4.2.0" | |
} | |
}, |
This file contains hidden or 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
{ | |
"nativescript": { | |
"id": "org.nativescript.bbb", | |
"tns-ios": { | |
"version": "4.2.0" | |
}, | |
"tns-android": { | |
"version": "4.2.0" | |
} | |
}, |