01-26-2017 10:22 AM
AndroidRuntime: Caused by: java.lang.ClassNotFoundException: Didn't find class "com.mycompany.myappname.myAppProductName" on path: DexPathList[[zip file "/data/app/com.mycompany.myappname-2/base.apk"]
My AndroidManifest.xml was like this:<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.mycompany.myappname">
<uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<application android:icon="@drawable/app_icon" android:label="@string/app_name"> <activity android:name="myAppProductName"
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" android:label="@string/app_name" android:launchMode="singleTask" android:screenOrientation="landscape" android:configChanges="screenSize|orientation|keyboardHidden|keyboard" android:excludeFromRecents="true"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.INFO" /> </intent-filter> </activity> </application>
<meta-data android:name="com.samsung.android.vr.application.mode" android:value="vr_only"/>
</manifest>
<activity android:name="com.unity3d.player.UnityPlayerActivity"
01-30-2017 01:27 PM