|
|
|
@ -4,7 +4,6 @@ import androidx.appcompat.app.AppCompatActivity; |
|
|
|
|
|
|
|
|
|
import android.os.Bundle; |
|
|
|
|
import android.util.Log; |
|
|
|
|
import android.view.View; |
|
|
|
|
|
|
|
|
|
import java.io.File; |
|
|
|
|
|
|
|
|
@ -13,23 +12,19 @@ import top.niunaijun.blackbox.entity.pm.InstallResult; |
|
|
|
|
|
|
|
|
|
public class MainActivity extends AppCompatActivity { |
|
|
|
|
public static final String TAG = "MainActivity"; |
|
|
|
|
public static final int USER_ID = 0; |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
protected void onCreate(Bundle savedInstanceState) { |
|
|
|
|
super.onCreate(savedInstanceState); |
|
|
|
|
setContentView(R.layout.activity_main); |
|
|
|
|
findViewById(R.id.btn_click).setOnClickListener(new View.OnClickListener() { |
|
|
|
|
@Override |
|
|
|
|
public void onClick(View v) { |
|
|
|
|
String hlx = "com.huluxia.gametools"; |
|
|
|
|
boolean installed = BlackBoxCore.get().isInstalled(hlx); |
|
|
|
|
if (!installed) { |
|
|
|
|
InstallResult installResult = BlackBoxCore.get().installPackage(new File("/sdcard/huluxia.apk")); |
|
|
|
|
Log.d(TAG, "onClick: " + installResult.toString()); |
|
|
|
|
} |
|
|
|
|
BlackBoxCore.get().launchApk(hlx); |
|
|
|
|
findViewById(R.id.btn_click).setOnClickListener(v -> { |
|
|
|
|
String hlx = "com.huluxia.gametools"; |
|
|
|
|
boolean installed = BlackBoxCore.get().isInstalled(hlx); |
|
|
|
|
if (!installed) { |
|
|
|
|
InstallResult installResult = BlackBoxCore.get().installPackage(new File("/sdcard/huluxia.apk")); |
|
|
|
|
Log.d(TAG, "onClick: " + installResult.toString()); |
|
|
|
|
} |
|
|
|
|
BlackBoxCore.get().launchApk(hlx); |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} |