function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Synthia B.Synthia B. 

Version Compatibility Check

I am getting the following error for the code below while attempting to complete a change set. How can I correct this? 

"One or more components failed Version Compatibility Check.This change set contains components that require the "36.0" or higher platform version. Please select an organization with a platform version of "36.0" or higher, or remove all incompatible components.​"
 
global class myHandler implements Messaging.InboundEmailHandler {
      global Messaging.InboundEmailResult handleInboundEmail(Messaging.InboundEmail email, Messaging.InboundEnvelope envelope) {
          Messaging.InboundEmailResult result = new Messaging.InboundEmailresult();
          return result;
      }
  }

Thanks in Advance!!