我已經應用A和應用B從另一個應用程序關閉應用
我以這種方式推出B帶從A意圖:
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setClassName("com.applicationB", "com.applicationB.MainActivity");
intent.putExtra(EXTRA_NAME,"name");
startActivity(intent);
當用戶關閉應用程序。我想申請B到也關閉。應用程序B具有JNI並使用exec()
命令。
我試過android:sharedUserId
但是當應用程序A試圖與上面的代碼推出B I得到這個錯誤:
Error running exec(). Command: [....] Working Directory: null Environment: (not null, it shows all the environment.
任何想法?