diff --git a/tns-core-modules/ui/frame/frame.android.ts b/tns-core-modules/ui/frame/frame.android.ts index e894d1c1f..940dd4101 100644 --- a/tns-core-modules/ui/frame/frame.android.ts +++ b/tns-core-modules/ui/frame/frame.android.ts @@ -22,9 +22,6 @@ import { profile } from "../../profiling"; // TODO: Remove this and get it from global to decouple builder for angular import { createViewFromEntry } from "../builder"; -import { device } from "../../platform"; -import lazy from "../../utils/lazy"; - export * from "./frame-common"; const INTENT_EXTRA = "com.tns.activity"; @@ -35,8 +32,6 @@ const CALLBACKS = "_callbacks"; const ownerSymbol = Symbol("_owner"); const activityRootViewsMap = new Map>(); -const sdkVersion = lazy(() => parseInt(device.sdkVersion)); - let navDepth = -1; let fragmentId = -1; export let moduleLoaded: boolean;