0

I'm trying to add Appodeal in my app, but when i launch the command :

ionic cordova plugin add https://github.com/appodeal/appodeal-cordova-plugin.git

I got this error :

Installing "com.appodeal.plugin" for android
Failed to install 'com.appodeal.plugin': Error: ENOENT: no such file or directory, open '/Users/faycal/Downloads/ionic/topquotes/platforms/android/AndroidManifest.xml'

How to fix this ? I use IONIC 3

soussou
  • 3
  • 2

1 Answers1

0

1) Try to remove and add your android platform

ionic cordova platform rm android --save
ionic cordova platform add android@latest --save

2) Try this

npm install

3) Change the version of node and cordova

Ruben Sala
  • 271
  • 1
  • 10
  • Thank's, i add it with the first solution, when i try to generate APK, i got this error : A problem occurred evaluating project ':com.appodeal.plugin:adcolony'. > Could not get unknown property 'cdvCompileSdkVersion' for object of type com.android.build.gradle.LibraryExtension – soussou Sep 03 '18 at 14:58