All Downloads are FREE. Search and download functionalities are using the official Maven repository.

android.content.ComponentName Maven / Gradle / Ivy

Go to download

The Firebase Java SDK is a pure java port of the Firebase Android SDK to run in clientside java environments such as the desktop.

The newest version!
package android.content;

public class ComponentName {

    public final String pkg;
    public final String cls;

    public ComponentName(String pkg, String cls) {
        this.pkg = pkg;
        this.cls = cls;
    }

    public ComponentName(Context context, Class cls) {
        this.pkg = null;
        this.cls = cls.getName();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy