push-android

Android client for push notifications from cloudfiveapp.com

Лицензия

Лицензия

Группа

Группа

com.cloudfiveapp
Идентификатор

Идентификатор

push-android
Последняя версия

Последняя версия

1.2.0
Дата

Дата

Тип

Тип

aar
Описание

Описание

push-android
Android client for push notifications from cloudfiveapp.com
Ссылка на сайт

Ссылка на сайт

https://github.com/cloudfive/push-android
Система контроля версий

Система контроля версий

https://github.com/cloudfive/push-android.git

Скачать push-android

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/com.cloudfiveapp/push-android/ -->
<dependency>
    <groupId>com.cloudfiveapp</groupId>
    <artifactId>push-android</artifactId>
    <version>1.2.0</version>
    <type>aar</type>
</dependency>
// https://jarcasting.com/artifacts/com.cloudfiveapp/push-android/
implementation 'com.cloudfiveapp:push-android:1.2.0'
// https://jarcasting.com/artifacts/com.cloudfiveapp/push-android/
implementation ("com.cloudfiveapp:push-android:1.2.0")
'com.cloudfiveapp:push-android:aar:1.2.0'
<dependency org="com.cloudfiveapp" name="push-android" rev="1.2.0">
  <artifact name="push-android" type="aar" />
</dependency>
@Grapes(
@Grab(group='com.cloudfiveapp', module='push-android', version='1.2.0')
)
libraryDependencies += "com.cloudfiveapp" % "push-android" % "1.2.0"
[com.cloudfiveapp/push-android "1.2.0"]

Зависимости

compile (3)

Идентификатор библиотеки Тип Версия
org.jetbrains.kotlin : kotlin-stdlib-jdk7 jar 1.4.32
com.google.firebase » firebase-core jar 16.0.1
com.google.firebase » firebase-messaging jar 17.1.0

Модули Проекта

Данный проект не имеет модулей.

Cloud Five Push for Android

Quick Start

Using Gradle and Android Studio

It's easy, just add this dependency to your app's build.gradle:

dependencies {
    compile 'com.cloudfiveapp:push-android:1.2.0'
}

Cloud Five is hosted on Maven Central:

allprojects {
    repositories {
        mavenCentral()
    }
}

You also need to add a custom GCM permission to your app's AndroidManifest.xml. Just copy this directly before the <application> tag in your app:

<permission android:name="${applicationId}.permission.C2D_MESSAGE" android:protectionLevel="signature" />
<uses-permission android:name="${applicationId}.permission.C2D_MESSAGE" />

Configuration

In Application.onCreate, you need to configure CloudFivePush:

override fun onCreate() {
    super.onCreate()
    val pushMessageReceiver: PushMessageReceiver
    // Implement your own instance of PushMessageReceiver
    CloudFivePush.configure(this, pushMessageReceiver)
}

Then, register to receive push notifications:

CloudFivePush.register()

// If you wish to send targeted notifications to specific users, simply pass in a
// unique user identifier:
CloudFivePush.register('user@example.com')

That's it! Now you can receive pushes from Cloudfive and handle them in your PushMessageReceiver.

PushMessageReceiver Configuration

We launch a background service called FCMIntentService that handles incoming push notifications.

To handle custom data or behavior, simply implement the interface com.cloudfiveapp.push.PushMessageReceiver which has one method that receives an intent.

override fun onPushMessageReceived(intent: Intent) {
    val alert = intent.extras?.getString("alert")
    val message = intent.extras?.getString("message")
    val dataStr = intent.extras?.getString("data")
    // Create a notification
}

The parameters passed through the API appear in the extras of the Intent.

Contributing

We welcome pull requests or issues if you have questions.

Publishing Prerequisites

Get the GPG backup and import it with gpg --import c5-backup.pgp.

In local.properties in this project, add the following:

signing.gnupg.executable=gpg
signing.gnupg.keyName=<last 16 digits of the GPG key ID>
signing.gnupg.passphrase=<get from 1Password>

ossrhUsername=<get from 1Password, "Maven Jira" user>
ossrhPassword=<get from 1Password, "Maven Jira" user>

Publishing a new version

./gradlew clean build publishReleasePublicationToSonatypeRepository
  1. Visit Nexus Repository Manager and sign in as the "10fw" user.
  2. Visit "Staging Repositories" in the left nav bar and you should see the version you just uploaded via Gradle.
  3. Assuming everything worked correctly, "Close" the repository, then "Release" it.

Development

Maven Local

This hasn't been tested recently and may or may not work after the migration to Maven Central.

You can build push-android into a local Maven repository by running

./gradlew clean build publishToMavenLocal

This will output an aar file to $HOME/.m2/repository/ which can be compiled into an app by adding the mavenLocal() repo:

allprojects {
    repositories {
        mavenLocal()
    }
}

Then, append '@aar' to the dependency:

implementation 'com.cloudfiveapp:push-android:1.1.0@aar'
com.cloudfiveapp

Cloud Five

Cloud Five - Heavenly HTML5 development tools

Версии библиотеки

Версия
1.2.0