Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ import com.android.vending.licensing.ILicenseV2ResultListener;

interface ILicensingService {
oneway void checkLicense(long nonce, String packageName, ILicenseResultListener listener);
oneway void checkLicenseV2(String packageName, ILicenseV2ResultListener listener, in Bundle extraParams);
oneway void checkLicenseV2(String packageName, ILicenseV2ResultListener listener, int unknown);

}
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ class LicensingService : Service() {
override fun checkLicenseV2(
packageName: String,
listener: ILicenseV2ResultListener,
extraParams: Bundle
unknown: Int
): Unit = runBlocking {
Log.v(TAG, "checkLicenseV2($packageName, $extraParams)")
Log.v(TAG, "checkLicenseV2($packageName, $unknown)")

val response = checkLicenseCommon(packageName, V2Parameters)

Expand Down