I'm trying to editing some open source files. In one of the files, there is a "import org.apache.regexp.RE" that is causing an error "package org.apache.regexp" does not exist"
Where do include this package in my Android Studio so that the files would work. Thank you.
Here is the gradle file after I downloaded the jakarta-regexp.jar file
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:23.2.1'
compile 'com.android.support:design:23.2.1'
compile files('libs/jakarta-regexp.jar')