Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android and Unity 3D game development

Tags:

I am starting to explore the game development using unity 3d for android. I have downloaded the trial version of unity 3.3. I went through few tutorials.

I have one question that is not answered. In the normal apps which we develop using eclipse, we can deploy onto mobile by copying the apk file. What about unity 3d? How do I get the game onto my phone. I don't want to publish on market.

like image 884
sankara rao bhatta Avatar asked Jun 28 '11 12:06

sankara rao bhatta


People also ask

Can I develop Android games in Unity?

Steps to create a Unity game for Android To use Unity to create a game experience for players on Android, follow these steps: Download and install the Unity Hub. Start the Unity Hub. On the Installs tab, add a version of the Unity Editor that supports 64-bit apps.

Is Unity compatible with Android?

Unity's strong partnerships with the leading mobile platforms – including custom tools for iOS and Android – ensure you have access to cutting-edge solutions that power your success.

Can mobile games be made with Unity?

Unity Cloud BuildYou can simultaneously and effortlessly build for iOS and Android (and other platforms) in the cloud. And since Cloud Build is integrated with Collaborate, it works seamlessly for your entire team.


2 Answers

It is possible to transfer your assets to Eclipse. When it's integrated you can debug via your android phone. Be sure to read the tutorial on Unity's homepage. There is a step by step start-up guide and some more. Following links are worth looking at:

  • Getting started with Unity and Android
  • Official - Integrating Unity with Eclipse
  • Alternative link - Integrating Unity with Eclipse

It would seem that the official "integration" link is broken so I updated with a forum post that covers the same topic. However I recommend to try with the official link first.

like image 112
Mazze Avatar answered Oct 17 '22 03:10

Mazze


Yes, you can simply copy the apk to your device and install it. Unity builds an apk file (and will optionally sign it using a keystore that you provide or let it generate for you). Once it has built that apk you can deploy it normally. You can even have it include a customized manifest in the apk that it builds if you want to (but it generates a nice one from your settings in the unity project by default).

like image 33
Clay Fowler Avatar answered Oct 17 '22 03:10

Clay Fowler