Android Studio 3.0 Beta 2 - unknown element <action> found in AndroidManifest.xml -
i'm having issue android studio 3.0 beta 2 not resolve inside manifest.xml
this how logcat looks when trying run app:
> error:(60) unknown element <action> found error:(66) unknown element <action> found error:(71) unknown element <action> found error:(76) unknown element <action> found error:(81) unknown element <action> found error:(86) unknown element <action> found error:(91) unknown element <action> found error:(96) unknown element <action> found error:/users/daniele/developer/android projects/chords2/app/build/intermediates/manifests/full/debug/androidmanifest.xml:60 unknown element <action> found error:/users/daniele/developer/android projects/chords2/app/build/intermediates/manifests/full/debug/androidmanifest.xml:71 unknown element <action> found error:/users/daniele/developer/android projects/chords2/app/build/intermediates/manifests/full/debug/androidmanifest.xml:81 unknown element <action> found error:/users/daniele/developer/android projects/chords2/app/build/intermediates/manifests/full/debug/androidmanifest.xml:91 unknown element <action> found error:java.util.concurrent.executionexception: com.android.builder.internal.aapt.aaptexception: aapt2 link failed: error:com.android.builder.internal.aapt.aaptexception: aapt2 link failed: this how app build.gradle looks like:
apply plugin: 'com.android.application' android { signingconfigs { ######_key { keyalias '######' keypassword '######' storefile file('#######.jks') storepassword '######' } } compilesdkversion 26 buildtoolsversion "26.0.1" defaultconfig { applicationid "######" minsdkversion 21 targetsdkversion 26 versioncode 16 versionname "2.1" signingconfig ###### multidexenabled true } buildtypes { release { shrinkresources true minifyenabled true proguardfiles getdefaultproguardfile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } productflavors { } databinding { enabled = true } } dependencies { compile filetree(include: ['*.jar'], dir: 'libs') androidtestcompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) compile 'com.android.support:appcompat-v7:26.0.1' compile 'com.android.support:support-v4:26.0.1' compile 'com.android.support:design:26.0.1' compile 'com.android.support:recyclerview-v7:26.0.1' compile 'com.android.support:cardview-v7:26.0.1' compile 'com.getbase:floatingactionbutton:1.10.1' compile 'com.squareup.picasso:picasso:2.5.2' compile 'com.github.hotchemi:android-rate:1.0.1' compile 'com.google.firebase:firebase-ads:11.2.0' compile 'com.google.firebase:firebase-invites:11.2.0' compile 'com.google.firebase:firebase-crash:11.2.0' compile 'com.google.firebase:firebase-storage:11.2.0' compile 'com.heinrichreimersoftware:material-intro:1.6.2' testcompile 'junit:junit:4.12' } apply plugin: 'com.google.gms.google-services' i have ### out data regarding signing key. me looks alright.
i tried cleaning, rebuilding, resyncing gradle file, still no luck though.
this logcat screenshot. maybe it's more readable
based on mikem suggestion tried this answer , changed in gradle-wrapper.properties
distributionurl=https://services.gradle.org/distributions/gradle-4.1-rc-2-all.zip the error still there though

Comments
Post a Comment