Initial import of ADIF API reverse-engineering toolkit
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package com.google.firebase.platforminfo;
|
||||
|
||||
import com.google.auto.value.AutoValue;
|
||||
|
||||
/* JADX INFO: Access modifiers changed from: package-private */
|
||||
@AutoValue
|
||||
/* loaded from: classes3.dex */
|
||||
public abstract class LibraryVersion {
|
||||
public static LibraryVersion create(String str, String str2) {
|
||||
return new AutoValue_LibraryVersion(str, str2);
|
||||
}
|
||||
|
||||
public abstract String getLibraryName();
|
||||
|
||||
public abstract String getVersion();
|
||||
}
|
||||
Reference in New Issue
Block a user