Reputation: 438
I have created a folder caller logging and a Java class called AppLogger in it. How do I import the class Applogger into MainActivity?
Upvotes: 0
Views: 5010
Reputation: 66
try this way:
import package_name.folder_name.java_class_name;
for you try this:
import mobileaccess.hid.com.hidmobileaccess.logging.AppLogger;
Upvotes: 2
Reputation: 756
Try this
import packkage.AppLogger;
Or if static
import static packkage.AppLogger;
Upvotes: 0