org.apache.cordova.api doesn't exist. PhoneGap 3.0

android, cordova

Solution

change your import to:

import org.apache.cordova.CordovaPlugin;

Problem

I'm trying to add VideoPlayer plugin (https://github.com/macdonst/VideoPlayer) to my phonegap Android app. While compiling I get problem: ``` VideoPlayer.java:25: error: package org.apache.cordova.api does not exist" ``` Line 25: ``` import org.apache.cordova.api.CordovaPlugin; ```

Original source