I have 2 projects. The one is an exact copy of the other. Lets call them Project A and Project A - Copy.
When I install and run both apps through Android Studio on a physical device, Project A - Copy works and Project A does not.
The difference seems to be in the run tab.
Project A (The app that does not work)
08/06 18:47:11: Launching app
$ adb push C:\Blessd\app\build\outputs\apk\app-release.apk /data/local/tmp/mobi.app.user.app
$ adb shell pm install -r "/data/local/tmp/mobi.app.user.app"
pkg: /data/local/tmp/mobi.app.user.app
Success
$ adb shell am start -n "mobi.app.user.app/mobi.app.androidrtc.SplashActivity" >-a android.intent.action.MAIN -c android.intent.category.LAUNCHER
Error: Activity class {mobi.app.user.app/mobi.app.androidrtc.SplashActivity} does not exist.
Error while Launching activity
SplashActivity does however exist
Compared to Project A - Copy (The working one)
$ adb shell am start -n
"mobi.app.androidrtc/mobi.app.androidrtc.SplashActivity" -a
android.intent.action.MAIN -c android.intent.category.LAUNCHER
So the question is how do I change the portion "mobi.app.user.app" as that seems to be giving me the problem.