Cant use Appcenter Code Push on Bare Template Expo App

I decided to not use Expo because I wanted to use native libraries like the fb-sdk. But as I needed some utilities like Permissions I began using Unimodules from expo.

Something I really miss is the OTA, and I wanted to use a service to get this feature back.

When I run react-native link appcenter I got this error message:

[!] CocoaPods could not find compatible versions for pod "UMFontInterface":
  In snapshot (Podfile.lock):
    UMFontInterface (from `../node_modules/unimodules-font-interface/ios`)

  In Podfile:
    UMFontInterface (from `../node_modules/unimodules-font-interface/ios`)

It seems like you've changed the constraints of dependency `UMFontInterface` inside your development pod `UMFontInterface`.
You should run `pod update UMFontInterface` to apply changes you've made.

and when I run pod update UMFontInterface I get this error:

[!] CocoaPods could not find compatible versions for pod "UMFontInterface":
  In Podfile:
    UMFontInterface (from `../node_modules/unimodules-font-interface/ios`)

Specs satisfying the `UMFontInterface (from `../node_modules/unimodules-font-interface/ios`)` dependency were found, but they required a higher minimum deployment target.

So Im unable to use the service. I tried to delete the unimodule but didnt work. Tried changing the platform version on the podfile, but didnt work.

Can this library work with expo unimodules? Exist any other service that let me use OTAs?