diff options
author | Mohamed Zenadi <mohamed@zenadi.com> | 2017-08-02 09:07:56 +0100 |
---|---|---|
committer | Mohamed Zenadi <mohamed@zenadi.com> | 2017-08-02 09:08:06 +0100 |
commit | 650246a82f81ef183a099b570915ac076f8acba5 (patch) | |
tree | c71d0cadcdf97bd065cc3d9a05d84604c8345699 /app/build.gradle | |
parent | 253572c26dd3f482d9e2a2200317b97fc49203af (diff) |
downgrade commons-io
The current version generated ANRs such as: `Input dispatching timed
out (Waiting to send non-key event because the touched window has not
finished processing certain input events that were delivered to it over
500.0ms ago. Wait queue length: 11. Wait queue head age: 8523.6ms.)`
when listing / opening files
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/build.gradle b/app/build.gradle index af743f47..67f4e095 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -63,6 +63,6 @@ dependencies { exclude group: 'org.apache.httpcomponents', module: 'httpclient' } compile 'com.jcraft:jsch:0.1.53' - compile group: 'commons-io', name: 'commons-io', version: '2.5' + ompile 'org.apache.commons:commons-io:1.3.2' compile 'com.jayway.android.robotium:robotium-solo:5.3.1' } |