Manifest merger failed, error on compiling
Since downloading the latest SDK and installing Android Studio, my project fails to build. I get the following message: Manifest merger failed with multiple errors My gradle app: apply plugin: 'com.android.application' android { compileSdkVersion 28 defaultConfig { applicationId "com.app.clupascu.oavm" minSdkVersion 21 targetSdkVersion 28 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies {