parent
9325d584b0
commit
742629c01a
@ -0,0 +1,16 @@ |
||||
package com.github.catvod.hook; |
||||
|
||||
import android.content.Context; |
||||
import android.content.ContextWrapper; |
||||
|
||||
public class Ctx extends ContextWrapper { |
||||
|
||||
public Ctx(Context base) { |
||||
super(base); |
||||
} |
||||
|
||||
@Override |
||||
public String getPackageName() { |
||||
return "com.android.chrome"; |
||||
} |
||||
} |
||||
Loading…
Reference in new issue