Run Calculator in my App
- by user
I want to start the android calculator activity IN my activity. So, I can run an activity of my app in an activity of my app. But if I want to start an activity of the calculator for example in my app, logcat throws me this:
FATAL EXCEPTION: main
java.lang.RuntimeException: Unable to start activity ComponentInfo{}: java.lang.SecurityException: Requesting code from com.android.calculator2 (with uid 10016) to be run in process (with uid 10044)
Caused by: java.lang.SecurityException: Requesting code from com.android.calculator2 (with uid 10016) to be run in process (with uid 10044)
How can I reach my goal to start the calculator activity in my activity?
Thank you very much