If you have added any of this dependency already then try to match the version.
Step 2 :
Initialize Acquire in the onCreate() method of an Activity where you plan to use the SDK, or an Application subclass. Use the initialization details provided by the Acquire Support admin and an Application instance:
class XYZApp : Application() {
override fun onCreate() {
super.onCreate()
AcquireApp.init(this, “put your account id here”)
}
}