Jeff

Results 4 issues of Jeff

In the Helloworld sample testing , gralde did not include the `testImplementation"androidx.car.app:app-testing:1.0.0-alpha01"` https://developer.android.com/reference/kotlin/androidx/car/app/testing/package-summary or declare any testing define in the hello world build.gradle also missing robolectric / junit and others...

FAILURE: Build failed with an exception. * What went wrong: A problem occurred configuring project ':app'. > Unable to find toolchain: C:\Users\j\AppData\Local\Android\Sdk\ndk-bundle\toolchains\mips64el-linux-android-4.9\prebuilt

in ClasssyTaxiAppKotlin , BillingClientLifecycle.kt ~~~ fun querySubscriptionPurchases() { if (!billingClient.isReady) { Log.e(TAG, "querySubscriptionPurchases: BillingClient is not ready") billingClient.startConnection(this) // ---------------------------> should return here? } billingClient.queryPurchasesAsync( QueryPurchasesParams.newBuilder() .setProductType(BillingClient.ProductType.SUBS) .build(), this )...

in android sample `ChatViewModel.kt` The collectIndexed function for inferenceModel.partialResults should not be placed inside sendMessage. Doing so will cause collect to be called again on partialResults the second time sendMessage...