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
var fs = require ('fs'); | |
module.exports = function(context) { | |
var events = context.requireCordovaModule('cordova-common').events; | |
// Define the assets to copy | |
var platformDir = { | |
wp8: { | |
icon: "", | |
splash: "", |
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
private void InitializePhoneApplication() | |
{ | |
if (phoneApplicationInitialized) | |
return; | |
// Create the frame but don't set it as RootVisual yet; this allows the splash | |
// screen to remain active until the application is ready to render. | |
RootFrame = new PhoneApplicationFrame(); | |
RootFrame.Navigated += CompleteInitializePhoneApplication; |
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
/* | |
Licensed to the Apache Software Foundation (ASF) under one | |
or more contributor license agreements. See the NOTICE file | |
distributed with this work for additional information | |
regarding copyright ownership. The ASF licenses this file | |
to you under the Apache License, Version 2.0 (the | |
"License"); you may not use this file except in compliance | |
with the License. You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 |