Skip to content

Commit 74902f7

Browse files
fix: Resolve compilation error in video streaming feature
This change addresses a compilation error that occurred after introducing the video streaming functionality. The `LiveSession.kt` file was missing an import for `android.Manifest`, which resulted in an "Unresolved reference" error during the build process. This commit adds the necessary `import android.Manifest` statement to `LiveSession.kt`, resolving the compilation issue.
1 parent 150893c commit 74902f7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

firebase-ai/src/main/kotlin/com/google/firebase/ai/type/LiveSession.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717
package com.google.firebase.ai.type
1818

19+
import android.Manifest
1920
import android.Manifest.permission.RECORD_AUDIO
2021
import android.content.pm.PackageManager
2122
import android.media.AudioFormat

0 commit comments

Comments
 (0)