diff --git a/e2e/animation/app/App_Resources/Android/app.gradle b/e2e/animation/app/App_Resources/Android/app.gradle index b7f79695b..ad050c828 100644 --- a/e2e/animation/app/App_Resources/Android/app.gradle +++ b/e2e/animation/app/App_Resources/Android/app.gradle @@ -8,7 +8,7 @@ android { defaultConfig { generatedDensities = [] - applicationId = "org.nativescript.modalnavigation" + applicationId = "org.nativescript.animation" } aaptOptions { additionalParameters "--no-version-vectors" diff --git a/e2e/animation/app/chaining-with-animation-set/page.ts b/e2e/animation/app/chaining-with-animation-set/page.ts new file mode 100644 index 000000000..71c90f621 --- /dev/null +++ b/e2e/animation/app/chaining-with-animation-set/page.ts @@ -0,0 +1,54 @@ +import { EventData, Page } from "tns-core-modules/ui/page"; +import { Animation, AnimationDefinition } from "tns-core-modules/ui/animation"; +import { Label } from "tns-core-modules/ui/label"; + +let view1: Label; +let view2: Label; +let view3: Label; +let view4: Label; + +export function pageLoaded(args: EventData) { + const page = args.object; + view1 = page.getViewById