I'm comparing these two folder:
My output from your example .capx :
<img src="http://mehmetmertyildiran.com/storage/scirra/Screenshot-MyOutput.png" border="0" />
Your project folder:
<img src="http://mehmetmertyildiran.com/storage/scirra/Screenshot-ProjectFolder.png" border="0" />
There are a lot of differences more than a file.
In your folder:
+MockIAPLib folder
+Assets/SplashScreen.png
+Bin folder(created by Visual Studio)
+obj folder(created by Visual Studio)
(App.xaml.cs)
+//Application.Current.Host.Settings.EnableFrameRateCounter = true;
- if (RootVisual == null)
+ WasTombstoned = !e.IsApplicationInstancePreserved;
+ if (WasTombstoned)
-
- MainPage m = (MainPage)((PhoneApplicationFrame)RootVisual).Content;
- m.OnAppActivated();
+ }
+ else
+ {
+ MainPage m = (MainPage)((PhoneApplicationFrame)RootVisual).Content;
+ m.OnAppActivated();
+ }
+ {
(App.xaml.cs)
Also there are a lot of differences at Mainpage.xaml and Mainpage.xaml.cs
(index.html)
+ wur@-ms-viewport { width: 100%; }
- {
- // Indicate Windows Phone 8 platform
- window["c2isWindowsPhone8"] = true;
-
+ {
(index.html)
(offline.appcache)
-#1379097799
+#1368019887
+logo.png
-icon-16.png
-icon-32.png
-icon-114.png
-icon-128.png
-loading-logo.png
(offline.appcache)
There can be more differences escaped from my eye. So I'm saying you should explain these differences.