Reputation: 4848
I am on the cusp of recieving a new project that involves creating a mobile app for android tablets. Is there a large difference in coding for web apps vs mobile apps. And is there any good links I can go to read up on it more? This will be in .Net by the way
Upvotes: 0
Views: 2615
Reputation: 308001
Well, obviously both involve coding, so they are quite similar at this level.
But the restrictions that apply to you are quite different.
So yes, there is quite a difference between writing a web-application and writing a native smartphone application.
Upvotes: 2
Reputation: 28545
Fundamentally coding is coding, but as with anything you are going to be using a different language with android and a different architecture for setting things up. I would suggest reading through the developer documents at developer.android.com and depending on how well you know java maybe do some studying on the basics of java development. www.thenewboston.com helped me a ton when I was first starting to program.
Upvotes: 0