getting started with android library projects

Post on 04-Dec-2014

614 Views

Category:

Technology

1 Downloads

Preview:

Click to see full reader

DESCRIPTION

As a great software developer, you learned early in your development career that duplication of code was not a good idea. With development patterns such as SOLID, developers are trained early that code duplication is evil. To help battle code duplication, and allow parts of Android applications to be reusable, the Android platform has recently introduced library projects to add to your development arsenal. In this session, we will explore Android library projects and the benefit they can provide to your application.

TRANSCRIPT

Jeff McWherter @jmcw jeff@gravityworksdesign.com���

Sharing

A Lesson For Android Developers On Sharing Resources

Professional Android

Copy & Paste

Java Libraries

Library Projects

6  

Hardware

Including APKs

8  

Including APKs

down vote

accepted

<intent-filter ><action android:name="android.intent.action.MAIN" /><category android:name="android.intent.category.LAUNCHER" />

</intent-filter>

<intent-filter> !<action android:name="gravityworks.plugins.PIZZA" /> ! <category android:name="android.intent.category.DEFAULT" />!</intent-filter> !

Intent newScreen = new Intent(“gravityworks.plugins.PIZZA”); !startActivity(newScreen); !  

Styles

Jeff McWherter  

jeff@gravityworksdesign.com���twitter : @jmcw���

top related