I am trying to use code from a project that I downloaded from Github, however I am consistently getting errors.
Is there more steps needed to use a project than importing it into eclipse?
I am currently just copying and pasting code from the downloaded project to mine.
Attempting to use the following:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res/com.mikhaellopez.circularimageviewsample" android:layout_width="fill_parent" android:layout_height="fill_parent" android:gravity="center" android:orientation="vertical" > <com.mikhaellopez.circularimageview.CircularImageView android:layout_width="250dp" android:layout_height="250dp" android:src="@drawable/image" app:border="true" app:border_color="@color/GrayLight" app:border_width="4dp" app:shadow="true" /> </LinearLayout> But getting the error:
Multiple annotations found at this line: - error: No resource identifier found for attribute 'border_color' in package 'com.mikhaellopez.circularimageviewsample' - error: No resource identifier found for attribute 'shadow' in package 'com.mikhaellopez.circularimageviewsample' - error: No resource identifier found for attribute 'border' in package 'com.mikhaellopez.circularimageviewsample' - error: No resource identifier found for attribute 'border_width' in package 'com.mikhaellopez.circularimageviewsample'