freshplanet / ANE-Push-Notification

Air Native Extension (iOS and Android) for Push Notification
Apache License 2.0
205 stars 104 forks source link

Does CancelLocalNotification() Work ? #55

Closed redcodelabs closed 7 years ago

redcodelabs commented 9 years ago

Hi,

Just looking trough your java code I found the following:

package com.freshplanet.nativeExtensions;

import com.adobe.fre.FREContext;
import com.adobe.fre.FREFunction;
import com.adobe.fre.FREObject;

public class CancelLocalNotificationFunction implements FREFunction {

public CancelLocalNotificationFunction() {
    // TODO Auto-generated constructor stub
}

@Override
public FREObject call(FREContext arg0, FREObject[] arg1) {
    // TODO Auto-generated method stub
    return null;
}
}

Looks like your methods are not implemented... am I looking at the wrong files ?