// Copyright 2015 The Chromium Authors. All rights reserved.// Use of this source code is governed by a BSD-style license that can be// found in the LICENSE file.packageorg.domokit.sky.demo;importandroid.content.Context;importorg.domokit.sky.shell.ResourceExtractor;importorg.domokit.sky.shell.SkyApplication;/** * SkyDemo implementation of {@link android.app.Application} */publicclassSkyDemoApplicationextendsSkyApplication{privatestaticfinalString[]DEMO_RESOURCES={"cards.skyx","fitness.skyx","game.skyx","interactive_flex.skyx","mine_digger.skyx","stocks.skyx",};@OverrideprotectedvoidonBeforeResourceExtraction(ResourceExtractorextractor){super.onBeforeResourceExtraction(extractor);extractor.addResources(DEMO_RESOURCES);}}