path for import class (@UsesLibraries)

Hi!
when importing a class from an external library, the compiler swears at the absence of a path: “error: package com.test.testlibrary.action does not exist”.
What should be the path when importing classes from an external library?
Thanks!

My code:

package com.qwdwqw.compstar;

import android.app.Activity;
import android.content.Context;
import com.google.appinventor.components.annotations.*;
import com.google.appinventor.components.common.ComponentCategory;
import com.google.appinventor.components.runtime.AndroidNonvisibleComponent;
import com.google.appinventor.components.runtime.ComponentContainer;
import com.google.appinventor.components.runtime.EventDispatcher;

import com.test.testlibrary.action.nameclass;

@DesignerComponent(
** version = 1,**
** description = “text1”,**
** category = ComponentCategory.EXTENSION,**
** nonVisible = true,**
** iconName = “”)**

@SimpleObject(external = true)
//Libraries
@UsesLibraries(libraries = “com.test:testlibrary:0.4.4”)
//Permissions
@UsesPermissions(permissionNames = “android.permission.FOREGROUND_SERVICE”)

public class CompStar extends AndroidNonvisibleComponent {

** //Activity and Context**
** private Context context;**
** private Activity activity;**

** public CompStar(ComponentContainer container){**
** super(container.$form());**
** this.activity = container.$context();**
** this.context = container.$context();**
** }**

** @SimpleFunction(description = “text2”)**
** public void TestFunction(){**

** }**

** @SimpleEvent(description = “text3”)**
** public void TestEvent(){**
** EventDispatcher.dispatchEvent(this, “TestEvent”);**
** }**
}

Are you sure you are using the correct library name?

I moved the library name from Arduino Studio, from the build section.gradle (everything compiles there successfully with this name):

dependencies {
implementation ‘com.test:testlibrary:0.4.4’
}

it turns out that the name is correct.