gradle
dependencies {
implementation 'com.google.auto.service:auto-service:1.0-rc7'
annotationProcessor 'com.google.auto.service:auto-service:1.0-rc7'
}
package com.example.library;
import com.google.auto.service.AutoService;
@AutoService(ExampleInterface.class)
public class ExampleImplementation implements ExampleInterface {
}