Technocrat

  • Home
Showing posts with label Visual Studio. Show all posts
Showing posts with label Visual Studio. Show all posts

Saturday, November 1, 2014

Use Visual Studio to Build Android Apps

 Sumit Kar     November 01, 2014     Android, Programming, Technology, Visual Studio     No comments   



Use Visual Studio to Build Android Apps ,TImus rak, Microsoft, Sumit Kar





You might think you need x-code to write an iOS app. You might think you need eclipse to write an Andriod app. Visual Studio, is it just for Windows?





The answer is a solid “No”. Since the recent update of Visual Studio 2013 Update 3, developers have comprehensive tooling to support Apache Cordova.





WHAT’S APACHE CORDOVA?



Apache Cordova was PhoneGap; it was purchased by Adobe, then spun off as an open source project to build a consistent, universal shell to run apps written with HTML/JavaScript/CSS across all the mobile platforms. Today we call PhoneGap, Apache Cordova.





Lots of developers know how to build iOS apps. Lots of developers know how to build Windows apps. Lots of developers know how to build Android apps. But, every developer knows how to write HTML, code in JavaScript, and edit CSS. Look at your development team; are they ready to write a mobile app? Before you answer, ask: do they know how to code for the web?





The consistent, universal shell that makes Cordova work across platforms connects your app’s JavaScript with native APIs and device hardware. You get the capabilities you want, cross-platform. You use the responsive design techniques you already know. You use the UI tooling you already have. And, you use the client-side libraries you already love.





Use Visual Studio to Build Android Apps ,TImus rak, Microsoft, Sumit Kar


INTRODUCING MULTI-DEVICE HYBRID APP TOOLING FOR VISUAL STUDIO






Before Visual Studio’s support for Cordova projects, developers had to use all kinds of crazy tools cobbled together in a delicate dance. With Multi-Device Hybrid App Tooling for Visual Studio, consumer and enterprise developers accustom to the power and love of Visual Studio, keep the IDE benefits that make them productive, and release cross-platform apps to whatever mobile store they choose. They really do.




















WHO’S THE TARGET?






The reality, almost every app is a candidate for Cordova. If you think about apps that have a branded, identical, cross-platform look-and-feel, those are a great candidate. If you think about apps that today are simply mobile web sites, those are great candidates. if you think about version 1 apps that are just dabbling in the mobile space, those are great candidates. And if you think about internal apps that an enterprise needs to extend to more devices, those are great candidates. But, those are the only good candidates. They are, certainly, the sweet spot for Apache Cordova solutions.





You might wonder where to get this tooling. You get it here.







Via: Jerry Nixon


Read More
  • Share This:  
  •  Facebook
  •  Twitter
  •  Google+
  •  Stumble
  •  Digg
  •  WhatsApp
Older Posts Home

Pages

  • Home

Trending Now

  • Write a Program to Add two 3x3 Matrix using C
    #include<stdio.h> void main () { int a [ 3 ][ 3 ], b [ 3 ][ 3 ], s [ 3 ][ 3 ], i , j ; printf ( "Enter the values of ...
  • C program for Unit Conversion
    /* Convert Celsius to Fahrenheit */ #include<stdio.h> void main() {     float c,f;     printf("Enter the temperature in Celcius: ...
  • Addition of two numbers on Server sent from Client [TCP] using C
    /* tcpClient.c */ #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #inc...
  • Write a Program to Print the Truth Table of Basic Gates using C
  • Write a Program to Add two 5x5 Matrix using C
    #include<stdio.h> void main() {   int a[5][5],b[5][5],c[5][5];   int i,j;   for(i=0;i<5;i++)   {     printf("\nEnter elements ...
  • Using the concept of Inheritance write a C++ Program to calculate the area and perimeter of rectangle
    /* C++ Program to calculate the area and perimeter of rectangles using concept of inheritance. */ #include using namespace std; class Re...
  • Concatenation of two strings sent from Client on the Server - [ TCP ] using C
    /* tcpClient.c */ #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #inc...
  • 8085 Programming: Exchange the contents of memory locations
    Exchange the contents of memory locations 2000H and 4000H. Program 1: LDA 2000H : Get the contents of memory location 2000H into accumulator...
  • Calculate Depreciation using C
    #include<conio.h> #include<stdio.h> void main () { float sv , pv , dep ; int yos ; clrscr (); printf ( "Enter the pu...
  • 8085 Programming: 1's COMPLEMENT OF A 16-BIT NUMBER
    The 16bit number is stored in C050,C051 The answer is stored in C052,C053   LXI H,C050   MOV A,M   CMA   STA C052   INX H   MOV ...

Blog Archive

  • ▼  2020 (1)
    • ▼  May (1)
      • Automating your deployments using Ansible
  • ►  2015 (92)
    • ►  October (4)
    • ►  September (3)
    • ►  August (3)
    • ►  July (9)
    • ►  June (9)
    • ►  May (20)
    • ►  April (7)
    • ►  March (22)
    • ►  February (7)
    • ►  January (8)
  • ►  2014 (158)
    • ►  November (70)
    • ►  October (6)
    • ►  September (82)
Powered by Blogger.

Categories

C - Programming Java Programming Basic Technology 8085 Assembly Programming For Loop Numerical Methods WhatsApp Algorithm Shell Programming Programming Networking Windows Android C++ Programming CPP If Else Tricky Internet Microsoft Pattern Photography Socket Program News While Loop Array DBMS DS Macro Recursion User Defined Function Conditional Operator Data Structure Durga Puja Earthquake Google Mela Nokia SQL Share Yahoo Airtel Bio Command Prompt Confused Facebook Finance Firefox Ganges Graph HokKolorob Input Kolkata MCQ Math Matrix NetNeutrality Oracle Religion Search Sumit Kar Survey Switch Case Viral Virus Visual Studio do-while featured featured_slider

Popular Programs

  • Write a Program to Add two 3x3 Matrix using C
    #include<stdio.h> void main () { int a [ 3 ][ 3 ], b [ 3 ][ 3 ], s [ 3 ][ 3 ], i , j ; printf ( "Enter the values of ...
  • C program for Unit Conversion
    /* Convert Celsius to Fahrenheit */ #include<stdio.h> void main() {     float c,f;     printf("Enter the temperature in Celcius: ...
  • Addition of two numbers on Server sent from Client [TCP] using C
    /* tcpClient.c */ #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #inc...
  • Write a Program to Print the Truth Table of Basic Gates using C
  • Write a Program to Add two 5x5 Matrix using C
    #include<stdio.h> void main() {   int a[5][5],b[5][5],c[5][5];   int i,j;   for(i=0;i<5;i++)   {     printf("\nEnter elements ...
  • Using the concept of Inheritance write a C++ Program to calculate the area and perimeter of rectangle
    /* C++ Program to calculate the area and perimeter of rectangles using concept of inheritance. */ #include using namespace std; class Re...
  • Concatenation of two strings sent from Client on the Server - [ TCP ] using C
    /* tcpClient.c */ #include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> #inc...
  • 8085 Programming: Exchange the contents of memory locations
    Exchange the contents of memory locations 2000H and 4000H. Program 1: LDA 2000H : Get the contents of memory location 2000H into accumulator...
  • Calculate Depreciation using C
    #include<conio.h> #include<stdio.h> void main () { float sv , pv , dep ; int yos ; clrscr (); printf ( "Enter the pu...
  • 8085 Programming: 1's COMPLEMENT OF A 16-BIT NUMBER
    The 16bit number is stored in C050,C051 The answer is stored in C052,C053   LXI H,C050   MOV A,M   CMA   STA C052   INX H   MOV ...

Daily Hits

Copyright © Sumit Kar