Questions tagged [library-project]

A project that will be compiled as a library

A project that will be compiled as a library.

In Android:

A library project is a standard Android project, so you can create a new one in the same way as you would a new application project.

To create a new library project:

1 - Select File > New > Project.
2 - Select Android > Android Application Project, and click Next.
3 - Enter the basic settings for the project, including Application Name, Project Name, Package Name, and SDK settings.
4 - In the Configure Project page, select the Mark this project as a library option to flag the project as a library.
5 - Set the other options as desired and click Next.
6 - Follow the instructions to complete the wizard and create a new library project.

You can also convert an existing application project into a library. To do so, simply open the Properties for the project and select the is Library checkbox

182 questions
-3
votes
1 answer

Android Studio 0.8.2 : How to add local Project Library?

i am a android app developer and converting myself from Eclipse to Android Studio. Now i get a difficulty to add library project into another project. What i can do in Eclipse is very clear: 1.Set project B as library Project (right…
-4
votes
2 answers

Making sure library project doesn't crash app

I am making an library project in android. How do I make sure that integration of the library project doesn't crash the app because of any exceptions in the library project. How do I wrap the entire library to handle exception at runtime and log it…
Harikrishnan CV
  • 901
  • 2
  • 8
  • 17
1 2 3
12
13