(File current, String name)
| 163 | // the needed library from "armeabi-v7a" |
| 164 | String[] archs = apkNativeLibDir.list(new FilenameFilter() { |
| 165 | @Override |
| 166 | public boolean accept(File current, String name) { |
| 167 | return new File(current, name).isDirectory(); |
| 168 | } |
| 169 | }); |
| 170 | return archs; |
| 171 |
nothing calls this directly
no outgoing calls
no test coverage detected