-
Notifications
You must be signed in to change notification settings - Fork 99
FAQ
Q1: Where is the code for chapter 13
A: Chapter 13 expands on code introduced in chapter 12. The code for chapter 13 is in the $root/12/FinchVideo
Q2: How do I get the FinchVideo project to work?
A: Well, the short answer is that you can use the project and classpath files in the tools/ide/eclipse folders. A longer answer is that you need to set up the Finch Framework project ($root/finch/framework/FinchFramework). You need to be sure that the directory lib-src is on the build path. Then set up the FinchVideo project and add the FinchFramework as an (Android) library project.
Q3: Eclipse is telling me that "git-up load-pack not found" when I try to clone a project. What's up with that?
A: As with so many things git, this obscures a fairly simple problem: git can't download the thing you asked it to. There are a couple of common reasons for this:
- You forgot to put the ".git" at the end of the URL. You should be using this:
https://github.com/bmeike/ProgrammingAndroidExamples.git - You are trying to use the ssh URL (git@github.com:bmeike/ProgrammingAndroidExamples.git). That's going to require eclipse to find your private key.... Just use the URL above, instead.