MCPcopy Create free account
hub / github.com/FeJQ/AUPK / unpackWithClassLoader

Method unpackWithClassLoader

frameworks/base/core/java/android/app/Aupk.java:285–306  ·  view source on GitHub ↗

启动主动调用线程

(int second)

Source from the content-addressed store, hash-verified

283 * 启动主动调用线程
284 */
285 public void unpackWithClassLoader(int second)
286 {
287 new Thread(new Runnable()
288 {
289 @Override
290 public void run()
291 {
292 try
293 {
294 Log.e("AUPK", "start sleep for "+second+" seconds)......");
295 Thread.sleep(second* 1000);
296 Log.e("AUPK", "sleep over and start aupkThread");
297 aupkThread();
298 Log.e("AUPK", "aupk run over");
299 }
300 catch(Exception e)
301 {
302 e.printStackTrace();
303 }
304 }
305 }).start();
306 }
307
308 private boolean aupkThreadClasses(String packageName,String dexClassFileName)
309 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected