Error Boot
Error Boot

Reputation: 11

Apache Library importing on Android Studio

I need to import org.apache.commons.lang3.StringuUtils in my android project. But when I import the rar file then I lost my 'res' folder including all sub-folders and files from my project and when I open my main xml file then it shows me 'no SDK found'. But I have noticed that when my gradle sync is complete after importing the rar file then in the right-above side of screen it shows me a popup Android framework detected. So now anyone can help me please. ..

Upvotes: 1

Views: 3215

Answers (1)

Jiang YD
Jiang YD

Reputation: 3311

I think you should let Gradle to manage the dependencies. add compile org.apache.commons:commons-lang3:3.0 to your android 'dependencies' section.

Upvotes: 3

Related Questions