Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Execution failed for task ':expo-updates:compileReleaseKotlin'

I'm using expo sdk 45 platform: Android. Once I built the app this error prompt, I've tried upgrading and downgrading 'expo-updates' since the error is occuring at 'Android -> node-modules' but nothing came of it. Any suggestion will be helpful.

like image 613
Relie Essom Avatar asked Sep 12 '25 19:09

Relie Essom


2 Answers

I fixed this problem im my project:

  • removing "expo-updates" from my package.json,
  • deleting node_modules folder,
  • running npm install and rebuild.

now is solved

like image 99
Abel André Avatar answered Sep 14 '25 13:09

Abel André


Try building the app with ./gradlew app:assembleRelease instead of ./gradlew assembleRelease

like image 28
eeshankeni Avatar answered Sep 14 '25 13:09

eeshankeni