When I run my application I get this error:
pkg: /data/local/tmp/com.example.appgate.playsitas
Failure [INSTALL_PARSE_FAILED_MANIFEST_MALFORMED]
my packageName is in lower case and the minSdkVersion is less than the device's api level. I guess this is related to the multiDex that i add to the app multiDexEnabled true
and compile 'com.android.support:multidex:1.0.1'
My manifest is:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.playsit" >
<application
android:name=".App"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".SplashActivity"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>