📗
sounds
  • Introduction
  • Installing
  • Roadmap
  • API
    • Overview
    • AudioSource
    • Albums
    • Downloader
    • iOSCategory
    • MediaFormat
    • Monitoring
    • Quickplay
    • RecorderPlaybackController
    • SoundPlayer
    • SoundPlayerUI
    • SoundRecorder
    • SoundRecorderUI
    • Track
  • Platforms
    • Overview
    • Android
    • iOS
  • Contributing
    • Overview
    • Building
    • Debugging
    • Logging
  • ETC
    • Migrating from Flutter Sound
Powered by GitBook
On this page

Was this helpful?

  1. Contributing

Debugging

Overview

When you face the following error,

* What went wrong:
A problem occurred evaluating project ':app'.
> versionCode not found. Define flutter.versionCode in the local.properties file.

Please add below to your example/android/local.properties file.

flutter.versionName=1.0.0
flutter.versionCode=1
flutter.buildMode=debug
PreviousBuildingNextLogging

Last updated 4 years ago

Was this helpful?