The Introduction to Computing (i2c) Library that comes with my Intro to CS with Android textbook is designed as a pedagogic scaffolding tool that sheds light on the more intricate aspects of object oriented programming. This document covers two aspects of i2c: installation and API.

Installing i2c

Create your Android project first and then follow these steps:
  1. Right-click this link
  2. Save the link as i2c.jar in your Android project's app/libs folder.
  3. From Andrid Studio's File menu, select Project Structure ...
  4. Select app in the left sidebar and then the Dependencies tab
  5. Click the + symbol and add a Jar dependency
  6. Navigate to i2c.jar file in app/libs and select it
  7. Apply this change by selecting ok.

The i2c API

The complete API is available here.