Few cents about my commits

RoboPods: OneSignal framework

|

New OneSignal.framework pod, currently it is in testing. Meanwhile it is available from my own maven repo for intermediate results altpods: Altpods are available as repository in github, also it is deployed it to ‘oss.sonatype.org’ so it is available as maven artifact.

OneSignal is a free push notification service for mobile apps

Update: sample now includes Notification Service Extension check post for details

to use OneSignal pod configure your robovm.xml

<config>
    ...
    <frameworkPaths>
        <path>libs</path>
    </frameworkPaths>
    <frameworks>
        <framework>OneSignal</framework>
    </frameworks>
</config>

Add the following dependency to your build.gradle:

dependencies {
   ... other dependencies ...
    compile "io.github.dkimitsa.robovm:robopods-onesignal-ios:$altpodsVersion"
}

Sample application is available by link

Comments