我正在开发Android应用程序,我逐个收集图像上传到服务器。在收集了1或2张图像后,突然发生了崩溃,Logcat说:
RewriteEngine On
# Redirect Trailing Slashes If Not A Folder...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Force SSL
RewriteCond %{HTTPS} !=on
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^ index.php [L]
接着是
A/Bitmap: Failed to acquire strong reference to pixels
任何人都可以帮我解决Logcat跟踪的含义。我搜索了同样但没有找到任何东西。