本文将介绍CordovaVisualStudio,在Windows平板电脑上安装appx的详细情况,特别是关于平板可以安装visualstudio的相关信息。我们将通过案例分析、数据研究等多种方式,帮
本文将介绍Cordova Visual Studio,在Windows平板电脑上安装appx的详细情况,特别是关于平板可以安装visual studio的相关信息。我们将通过案例分析、数据研究等多种方式,帮助您更全面地了解这个主题,同时也将涉及一些关于(OK) Spend Leap Day with TACO + VS Code (visual studio code) - Cordova、.net – 在Windows 7或Vista上安装Visual Studio 2002、c – 如何在Windows 7 / visual studio 2008下编译Windows XP、c# – 有没有办法在Windows 7和visual studio 2012中创建一个Windows Phone 8应用程序的知识。
本文目录一览:- Cordova Visual Studio,在Windows平板电脑上安装appx(平板可以安装visual studio)
- (OK) Spend Leap Day with TACO + VS Code (visual studio code) - Cordova
- .net – 在Windows 7或Vista上安装Visual Studio 2002
- c – 如何在Windows 7 / visual studio 2008下编译Windows XP
- c# – 有没有办法在Windows 7和visual studio 2012中创建一个Windows Phone 8应用程序
Cordova Visual Studio,在Windows平板电脑上安装appx(平板可以安装visual studio)
我开发了一个视觉工作室的cordova应用程序部署到Windows。
之后,我得到了一个文件夹“〜 platforms windows AppPackages ”,里面有一个* .appx文件,就像在如何将Visual Studio Cordova应用程序部署到Windows 8中一样。
我用usb-stick将我的windows平板电脑上的appx文件复制过来。 现在我试图运行该文件。 – >像一个普通的台式电脑一样的反应。 不能运行扩展。 (对话框中的“如何打开这种types的文件”)
什么是正确的方式,没有一个应用程序商店。
从Windows 8.1 Cordova应用程序的appdata文件夹加载HTML / JS文件的问题
Cordova平台添加:无法运行“java -version”
Sencha Command上的Cordova和PhoneGap初始化失败
Ant构build执行cordova
在应用程序closures时处理Windows Phone 8.1中的Toast通知
Cordova生成Windows错误 – 缺lessMicrosoft.Winjs.2.0
使用Angular的Cordova APP中的WWAHost中未处理的exception
如何保存cordova应用程序退出状态?
“需要签名密钥” – 是否可以在Windows上使用Dreamweaver CS6 Extended / PhoneGap创buildioS应用程序?
如何与客户共享Windows 8应用程序
如果您想部署用于测试目的,在AppPackages文件夹下,您应该看到一个* _Test文件夹,如下所示。 您可以将此文件夹复制到要测试应用程序的机器上。 在该文件夹中有一个PowerShell脚本,将安装到机器上的应用程序。
总结
以上是小编为你收集整理的Cordova Visual Studio,在Windows平板电脑上安装appx全部内容。
如果觉得小编网站内容还不错,欢迎将小编网站推荐给好友。
(OK) Spend Leap Day with TACO + VS Code (visual studio code) - Cordova
http://taco.tools/articles/leap-day.html
This year, we all have an extra day to spend doing whatever we want. So, why not take 15min to learn to build an iOS, Android and Windows app all at once?
This exericise introduces you to the core components of a Cordova app and how to create one in VS Code.
You in? Let’s go.
1. Setup
1.1 Install Visual Studio Code from the VS Code website, code.visualstudio.com.
VS Code is our lightweight, multi-screen code editor with the intellisense and debugging support of the Visual Studio IDE. This is the main tool we will use to create our Cordova project.
1.2 Install Apache Cordova, Ionic Framework, and the Tools for Apache Cordova CLI.
Enter into the Windows command prompt: npm install -g cordova ionic taco-cli
Or, enter into the Mac terminal: sudo npm install -g cordova ionic taco-cli
These are the three main tools we will use in VS Code.
-
Cordova is open source platform for building native mobile applications using HTML, CSS, JS.
-
Ionic is a front end framework for developing native-looking mobile apps built on top of Angular JS.
-
Tools for Apache Cordova is a product built at Microsoft that makes setting up and getting started really easy. It abstracts away the tool chain needed to test your app, and includes features like
kits
to make migrating to new versions of Cordova easy.
2. Get an App Going
2.1 Create your app: In the command promt, navigate to the directory in which you want your project to live, and type the command ionic start myLeapDay
. This will create a basic Ionic app called myLeapDay
using the default tabs template.
This walkthrough uses Ionic framework to create a basic, native-looking Cordova app.
2.2 Add and remove platforms using taco-cli
Enter your new Cordova project by typing cd myLeapDay
into the command prompt and ls
to explore the file structure of your project. If you type cd platforms
, you will see that Ionic already has added iOS to the platforms folder, so you can build your Cordova app into an iOS app.
Now, add an Android app to your project by typing taco platform add android
into the command prompt. That will mean that your Cordova project will now try to build into Android and iOS.
2.3 Play around!
Check out what your app looks like by deploying it in a browser. Navigate back to the root of your project, and type ionic serve
into the command prompt to open myLeapYear
in a lightweight emulator running in your web browser. (Unfortunately, you can only see the iOS version).
3. Turn this basic app into a collection of golf balls in VS Code
Now, we will use VS Code to start poking around inside your project. Open VS Code, then go to File > Open, and navigate to the folder where you can see myLeapDay. Click on the folder (but not into it!) and press open.
You can see in the screenshot that your project should have a platforms/android folder, which you added using taco-cli.
The app itself exists in the www/ folder. You can see all the parts of a traditional website in this folder:
- css/ holds the an empty style.css, where you can add your own styling
- img/ holds images and other site assets
- js/ holds all the logic of the Angular JS project–essentially the core of the app
- lib/ holds the Ionic framework files that acts as scaffolding for this project
- templates/ holds the extra pages/html files shown in the app
- index.html, the landing page and where the app begins
3.1 Download this zip of web assets from this post. Unzip the folder and drag all the images to the www/img/ folder of your project.
3.2 Modify the landing page of the app. In templates/tabs.html, you see all three tab categories shown on the naviagtion bar. The dashboard tab links to an ion-nav-view
called tab-dash
. In templates/tab-dash.html, replace the file with the one in the zip folder, leapday/tabs-dash.html. Deploy using ionic serve
to see the change.
3.3 Add golf ball data. In js/services.js, there is test data called var chats
. We are going to take advantage of the existing formatting to replace each chat with a golf ball, and add some new fields like category and dimensions. Replace the js/services.js with leapday/services.js.
Deploy to your browser again using ionic serve
, and click on the chats tab to see the change. In particular, notice that the chats are now replaced with golf ball data. Tapping a golf ball takes you to the templates/chat-detail.html page, where you can see that the golf ball pictures are a bit skewed. On to the next step!
3.4 Fix formatting and using new fields.
Replace the file with the one in the zip folder, leapday/chat-detail.html. It replaces the line , allowing each golfball to have its own custom dimensions that we set in services.js.
Now, to customize the detail screen further, go to chat-detail.html and try adding the following line of code right above the <p> {{ chat.lastText }} </p>
element: <h2>Pattern category: {{ chat.cat }} </h2>
4. Bonus: Deploy to a virtual Android device
Since you have been viewing the app in its iOS form, let’s take a look at how it looks in Android.
4.1 Navigate to the root of your project and enter taco install-reqs android
into the command prompt. This will install the dependencies needed to build and deploy your Cordova app into the standard Android emulator (Android SDK and Java 7, update 55).
4.2 Open the Android SDK manager using the command android sdk
(sudo android sdk
on a Mac). Check the following boxes for Android 5.0.1 (API 21)
4.4 Enter android avd
(sudo android avd
on a Mac) to open the Andriod AVD manager, click “Create” and set up an Android virtual device. Be sure to specify an AVD name, Device, Target, and CPU/ABI
4.5 Return to the terminal, and at the root of your project, emulate using the command taco emulate android
(or sudo taco emulate android
)
5. Pat yourself on the back
You did it!! You’ve built your first Cordova app, viewed it on two different platforms, and are ready to hit the road. Please let us know how you enjoyed this brief tutorial, and what you’d like to see next.
And we would love to hear about how you enjoyed your time in VS Code. Send feedback by clicking on the smile in the bottom-right corner of the code editor.
Until next time,
Linda Zhong Program Manager | Tools for Apache Cordova
Microsoft Visual Studio
lizhong@
.net – 在Windows 7或Vista上安装Visual Studio 2002
注意:
我知道VS 2002和Framework 1.0在Windows 7 / Vista上不兼容但是
我把它安装在另一台类似的机器上并且已经使用了一段时间.不幸的是,我不记得我做了什么让它成功.
任何建议,解决方法,想法或解决方案都非常感谢.
>请不要告诉我它是不兼容和/或downVote,因为我100%确定我在一台机器上运行它.
>此外,由于遗留应用程序,我必须使用VS2002.
解决方法
卸载作为VS2005 / sql Server 2008安装的一部分安装的所有其他框架(2.0).
还发现Windows安装程序可能已损坏并执行某些操作以修复该安装程序和其他一些注册表设置.
我可以回想起的主要区别是,在安装VS2002之前,我在这个系统上有其他框架,MVC等,这可能会导致一些冲突.
但我再也不能说究竟是什么解决了这个问题.所以可能我应该从头开始只使用普通的操作系统.
c – 如何在Windows 7 / visual studio 2008下编译Windows XP
这是一个非常小的命令行程序,所以应该有任何荒谬的依赖:
// XPBuild.cpp : Defines the entry point for the console application. // #include "stdafx.h" int _tmain(int argc,_TCHAR* argv[]) { printf("Hello world"); getchar(); return 0; }
我在某处读到defining several constants such as WINVER应该允许我为其他平台编译.我已经尝试将以下内容添加到my / D编译器选项中:
;WINVER=0x0501;_WIN32_WINNT 0x0501;NTDDI_VERSION=NTDDI_WINXP
但这没有任何区别.当我在我的Windows XP机器上运行它(实际上在virtualbox中运行)时,我收到以下错误:
This application has Failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem.
那么我错过了什么?是否还需要运行MSVC编译的程序或其他编译器选项或其他东西?
解决方法
尝试在XP机器上安装Microsoft Visual C++ 2008 SP1 Redistributable Pack – 您很可能会看到您的程序无需任何更改即可运行.
c# – 有没有办法在Windows 7和visual studio 2012中创建一个Windows Phone 8应用程序
解决方法
关于Cordova Visual Studio,在Windows平板电脑上安装appx和平板可以安装visual studio的问题我们已经讲解完毕,感谢您的阅读,如果还想了解更多关于(OK) Spend Leap Day with TACO + VS Code (visual studio code) - Cordova、.net – 在Windows 7或Vista上安装Visual Studio 2002、c – 如何在Windows 7 / visual studio 2008下编译Windows XP、c# – 有没有办法在Windows 7和visual studio 2012中创建一个Windows Phone 8应用程序等相关内容,可以在本站寻找。
本文标签: