Already Dead
Already Dead
@daiqiquan I face the same problem, and debug it for days. Finnally I found the cause and send the pull request. Hope helps.
我是这么获取的,使用版本v2.7.3-rc07 ```java ExifInterface exifInterface = null; try { exifInterface = new ExifInterface(localMedia.getRealPath()); double[] latLon = exifInterface.getLatLong(); if (latLon != null && latLon.length >= 2) { mediaFile.latitude = latLon[0]; mediaFile.longitude =...
我也遇到了,研究半天,发现解决办法如下: 在Podfile中添加如下代码:(以使用最新的微博sdk依赖)  然后再terminal ios目录运行 ```bash rm Podfile.lock rm -rf Pods pod install ```
For me, solved according this link: https://github.com/pichillilorenzo/flutter_inappwebview/issues/2150#issuecomment-2132114530 ```yaml dependency_overrides: webview_flutter_android: 3.16.1 ```