Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Unity Android Game Development by Example Beginner's Guide

You're reading from   Unity Android Game Development by Example Beginner's Guide Absolute beginners to designing games for Android will find this book is their passport to quick results. Lots of handholding and practical exercises using Unity 3D makes learning a breeze.

Arrow left icon
Product type Paperback
Published in Dec 2013
Publisher Packt
ISBN-13 9781849692014
Length 320 pages
Edition 1st Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Thomas James Finnegan Thomas James Finnegan
Author Profile Icon Thomas James Finnegan
Thomas James Finnegan
Arrow right icon
View More author details
Toc

Table of Contents (12) Chapters Close

Preface 1. Saying Hello to Unity and Android FREE CHAPTER 2. Looking Good – Graphical Interface 3. The Backbone of Any Game – Meshes, Materials, and Animations 4. Setting the Stage – Camera Effects and Lighting 5. Getting Around – Pathfinding and AI 6. Specialties of the Mobile Device – Touch and Tilt 7. Throwing Your Weight Around – Physics and a 2D Camera 8. Special Effects – Sound and Particles 9. Optimization A. Pop Quiz Answers Index

Time for action – connecting trickier devices

For trickier devices, there are a few general things we can try. If these steps fail to connect your device, you may need to do some special research.

  1. Start by typing the following commands. These will restart the connection system and display the list of devices again.
    adb kill-server
    adb start-server
    adb devices
    
  2. If you are still not having any luck, try the following commands. These commands force an update and restart the connection system.
    cd ../tools
    android update adb
    cd ../platform-tools
    adb kill-server
    adb start-server
    adb devices
    
  3. If your device is still not showing up, you have one of the most annoying and tricky devices. Check the manufacturer's website for data syncing and management programs. If you have had your device for quite some time, you have probably been prompted to install this more than once. If you have not already done so, install the latest version, even if you never plan on using it. The point is to obtain the latest drivers for your device, and this is the easiest way.
  4. Restart the connection system again using the first set of commands, and cross your fingers.
  5. If you are still unable to connect, the best, professional recommendation that can be made is to Google it. Conducting a search for your device brand with adb at the end should turn up a step-by-step tutorial specific to your device in the first couple of results. http://www.xda-developers.com/ is also an excellent resource for finding out all about the nitty-gritties of Android devices.

What just happened?

Some of the devices that you will encounter while developing will not connect easily. We just covered some quick steps and managed to connect these devices. If we could have covered the processes for every device, we would have. However, the variety of devices is just too large, and they keep making more.

You have been reading a chapter from
Unity Android Game Development by Example Beginner's Guide
Published in: Dec 2013
Publisher: Packt
ISBN-13: 9781849692014
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image