Hello, I am trying to implement the new feature I...
# firebase
n
Hello, I am trying to implement the new feature In-app feedback for our app but it is not working. Can you please help me what I am missing exactly? • I directly call this in my code:
Firebase.appDistribution.startFeedback("Share feedback")
• Have this dependency:
implementation("com.google.firebase:firebase-appdistribution-api-ktx:16.0.0-beta06")
• Enabled demo mode by:
shell setprop debug.firebase.appdistro.devmode true
l
Hi @nuhkoca - were you ever able to figure this out? I'm happy to help troubleshoot.
n
Hey @Lee Kellogg thanks for reaching out to me. I stil couldn’t sort this out
l
@nuhkoca Ok sorry you had trouble onboarding. We've expanded our documentation a bit since March. Some things you can try: • Update to the latest version of the SDK (16.0.0-beta08) which improves developer mode • Try these troubleshooting steps: https://firebase.google.com/docs/app-distribution/troubleshooting?platform=android#tester-cannot-start-feedback-in-app-android Also just to make sure, you also added the full SDK library to your build.gradle, yes? You should only add it for your prerelease variants, like "beta" or "debug" or whatever you distribute to app distribution, e.g.:
Copy code
betaImplementation("com.google.firebase:firebase-appdistribution:<version")
EDIT: Fixed latest version
n
Hey @Lee Kellogg thanks for the quick turnaround! I will check and let you know
UPT: It worked perfectly! Thank for the help, I appreciate
l
Great! No problem. And let me know if you have any feedback on the feature.
Update: 16.0.0-beta09 was just released as well
🚀 1
n
Hey @Lee Kellogg what about the Kotlin version?
com.google.firebase:firebase-appdistribution-api-ktx:16.0.0-beta08
Can I use it as well?
l
Hi! You can actually use beta09 for both now
n
Thank you!