crouton

I can't access Crouton library in Eclipse

醉酒当歌 提交于 2019-12-03 15:53:24
I followed all the steps for using the crouton library with Eclipse, but I still have not been able to use it. Here are the steps I followed: Clone the Crouton library from GitHub. Unzipped the file and copied out the library folder. Open eclipse and import the library into the workspace (The name changes to 'main'). Right-click on 'main' and select Add Support Library in the android tools option. Open project properties set build target to 4.4.2, and tick 'is library'. In the project which I want to use crouton, I add it as a library from the property option. After all these steps when I try

Crouton depends on libraries but is not a library itself

自闭症网瘾萝莉.ら 提交于 2019-11-30 12:40:39
问题 I'm using Android Studio 0.6.1, with Crouton library and today after gradle sync I got next error: Error:A problem occurred configuring root project 'project_name'. Module version de.keyboardsurfer.android.widget:crouton:1.8.4 depends on libraries but is not a library itself That's going on? 回答1: This issue due to com.android.support-v4 recent update. So I changed compile 'com.android.support:support-v4:20.+' to compile 'com.android.support:support-v4:19.1.+' and crouton works fine Different