Skip to content

Commit c003347

Browse files
committed
Fix v2 licensing
We forced the `extraParams` bundle to be non-null in Kotlin, but it was indeed null.
1 parent 605ca14 commit c003347

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

vending-app/src/main/java/com/android/vending/licensing/LicensingService.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class LicensingService : Service() {
5858
override fun checkLicenseV2(
5959
packageName: String,
6060
listener: ILicenseV2ResultListener,
61-
extraParams: Bundle
61+
extraParams: Bundle?
6262
): Unit = runBlocking {
6363
Log.v(TAG, "checkLicenseV2($packageName, $extraParams)")
6464

0 commit comments

Comments
 (0)