Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error while running Calendar project

Tags:

android

I have downloaded calendar project from https://github.com/android/platform_packages_apps_calendar and now I'm trying to run that project. I imported the project to eclipse via new --> Android project from existing source, it imported successfully but I'm getting a red exclamation mark in project, like this:

enter image description here

When I went to properties > Android I'm seeing this:

enter image description here

It looks like the project is using some libraries but is not able to find in the workspace. How can I fix this?

like image 828
Jainendra Avatar asked Sep 05 '13 07:09

Jainendra


2 Answers

You may to add the following dependencies as well.

https://android.googlesource.com/platform/frameworks/ex/

https://android.googlesource.com/platform/frameworks/opt/colorpicker/

https://android.googlesource.com/platform/frameworks/opt/calendar/

https://android.googlesource.com/platform/frameworks/opt/datetimepicker/

https://android.googlesource.com/platform/frameworks/opt/timezonepicker/

like image 123
Ye Lin Aung Avatar answered Sep 30 '22 16:09

Ye Lin Aung


I was able to build the AOSP Android calendar.

Ye Lin Aung give you almost all the neccesary, but you will need also "chips" library. This library is not included in the last master aosp necessary packages , but its in their repository in the old versions.

You can find the neccesary libraries in the next repository:

https://gitlab.com/Purcallas/AOSPCalendarExtensions/tree/master

Or in the Google repository (as say Ye) you can find chips and common values: https://android.googlesource.com/platform/frameworks/ex/+/ics-mr1

like image 25
VictorPurMar Avatar answered Sep 30 '22 16:09

VictorPurMar