Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
仅在 APK 的发布模式下出现问题,在调试模式下工作正常。经过太多的努力,由于使用了两个插件file_picker和permission_handler,我遇到了问题
只需添加两行代码即可解决问题app/build.gradle
app/build.gradle
buildTypes { release { shrinkResources false //add this line & minifyEnabled false // this line signingConfig signingConfigs.release } }
就我而言,它正在工作,希望它会有所帮助