-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial React Native Android support
- Loading branch information
0 parents
commit 7b90932
Showing
16 changed files
with
964 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
Copyright (c) 2016 Pushwoosh (http://www.pushwoosh.com) | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining | ||
a copy of this software and associated documentation files (the | ||
"Software"), to deal in the Software without restriction, including | ||
without limitation the rights to use, copy, modify, merge, publish, | ||
distribute, sublicense, and/or sell copies of the Software, and to | ||
permit persons to whom the Software is furnished to do so, subject to | ||
the following conditions: | ||
|
||
(i) the original and/or modified Software should be used exclusively to work with Pushwoosh services, | ||
|
||
(ii) the above copyright notice and this permission notice shall be | ||
included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF | ||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE | ||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION | ||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION | ||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
React Native Pushwoosh Push Notifications module | ||
=================================================== |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
'use strict'; | ||
|
||
import { NativeModules } from 'react-native'; | ||
|
||
var PushwooshModule = NativeModules.Pushwoosh; | ||
|
||
function PushNotification() {} | ||
|
||
//Function: init | ||
//Call this first thing with your Pushwoosh App ID (pw_appid parameter) and Google Project ID for Android (projectid parameter) | ||
// | ||
//Example: | ||
//(start code) | ||
// //initialize Pushwoosh with projectid: "GOOGLE_PROJECT_ID", appid : "PUSHWOOSH_APP_ID". This will trigger all pending push notifications on start. | ||
// Pushwoosh.init({ projectid: "XXXXXXXXXXXXXXX", pw_appid : "XXXXX-XXXXX" }); | ||
//(end) | ||
PushNotification.prototype.init = function(config, success, fail) { | ||
PushwooshModule.init(config, success, fail); | ||
}; | ||
|
||
//Function: register | ||
//Call this to register for push notifications and retreive a push Token | ||
// | ||
//Example: | ||
//(start code) | ||
// Pushwoosh.registerDevice( | ||
// function(token) | ||
// { | ||
// alert(token); | ||
// }, | ||
// function(status) | ||
// { | ||
// alert("failed to register: " + status); | ||
// } | ||
// ); | ||
//(end) | ||
PushNotification.prototype.register = function(success, fail) { | ||
PushwooshModule.register(success, fail); | ||
}; | ||
|
||
//Function: unregister | ||
//Unregisters device from push notifications | ||
PushNotification.prototype.unregister = function(success, fail) { | ||
PushwooshModule.unregister(success, fail); | ||
}; | ||
|
||
//Function: unregister | ||
//Unregisters device from push notifications | ||
PushNotification.prototype.onPushOpen = function(callback) { | ||
PushwooshModule.onPushOpen(callback); | ||
}; | ||
|
||
//Function: setTags | ||
//Call this to set tags for the device | ||
// | ||
//Example: | ||
//sets the following tags: "deviceName" with value "hello" and "deviceId" with value 10 | ||
//(start code) | ||
// Pushwoosh.setTags({deviceName:"hello", deviceId:10}, | ||
// function(status) { | ||
// console.warn('setTags success'); | ||
// }, | ||
// function(status) { | ||
// console.warn('setTags failed'); | ||
// } | ||
// ); | ||
// | ||
// //setings list tags "MyTag" with values (array) "hello", "world" | ||
// pushNotification.setTags({"MyTag":["hello", "world"]}); | ||
//(end) | ||
PushNotification.prototype.setTags = function(tags, success, fail) { | ||
PushwooshModule.setTags(tags, success, fail); | ||
}; | ||
|
||
//Function: getTags | ||
//Call this to get tags for the device | ||
// | ||
//Example: | ||
//(start code) | ||
// Pushwoosh.getTags( | ||
// function(tags) | ||
// { | ||
// console.warn('tags for the device: ' + JSON.stringify(tags)); | ||
// }, | ||
// function(error) | ||
// { | ||
// console.warn('get tags error: ' + JSON.stringify(error)); | ||
// } | ||
// ); | ||
//(end) | ||
PushNotification.prototype.getTags = function(success, fail) { | ||
PushwooshModule.getTags(success, fail); | ||
}; | ||
|
||
//Function: getPushToken | ||
//Call this to get push token if it is available. Note the token also comes in registerDevice function callback. | ||
// | ||
//Example: | ||
//(start code) | ||
// Pushwoosh.getPushToken( | ||
// function(token) | ||
// { | ||
// console.warn('push token: ' + token); | ||
// } | ||
// ); | ||
//(end) | ||
PushNotification.prototype.getPushToken = function(success) { | ||
PushwooshModule.getPushToken(success); | ||
}; | ||
|
||
//Function: getHwid | ||
//Call this to get Pushwoosh HWID used for communications with Pushwoosh API | ||
// | ||
//Example: | ||
//(start code) | ||
// Pushwoosh.getHwid( | ||
// function(token) { | ||
// console.warn('Pushwoosh HWID: ' + token); | ||
// } | ||
// ); | ||
//(end) | ||
PushNotification.prototype.getHwid = function(success) { | ||
PushwooshModule.getHwid(success); | ||
}; | ||
|
||
module.exports = new PushNotification(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"name": "pushwoosh-react-native-plugin", | ||
"version": "1.0.0", | ||
"description": "This plugin allows you to send and receive push notifications. Powered by Pushwoosh (www.pushwoosh.com).", | ||
"main": "index.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"keywords": [ | ||
"push", | ||
"notification" | ||
], | ||
"author": "Pushwoosh", | ||
"license": "MIT" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
apply plugin: 'com.android.library' | ||
|
||
android { | ||
compileSdkVersion 23 | ||
buildToolsVersion "23.0.3" | ||
|
||
defaultConfig { | ||
minSdkVersion 16 | ||
} | ||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
} | ||
|
||
dependencies { | ||
compile fileTree(dir: 'libs', include: ['*.jar']) | ||
compile 'com.facebook.react:react-native:0.14.+' | ||
compile 'com.android.support:support-v4:23.1.0' | ||
compile 'com.google.android.gms:play-services-gcm:8.4.0' | ||
compile 'com.google.android.gms:play-services-location:8.4.0' | ||
compile 'com.pushwoosh:pushwoosh:4.1.3' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Add project specific ProGuard rules here. | ||
# By default, the flags in this file are appended to flags specified | ||
# in /Users/arellomobile/Library/Android/sdk/tools/proguard/proguard-android.txt | ||
# You can edit the include path and order by changing the proguardFiles | ||
# directive in build.gradle. | ||
# | ||
# For more details, see | ||
# http://developer.android.com/guide/developing/tools/proguard.html | ||
|
||
# Add any project specific keep options here: | ||
|
||
# If your project uses WebView with JS, uncomment the following | ||
# and specify the fully qualified class name to the JavaScript interface | ||
# class: | ||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview { | ||
# public *; | ||
#} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<module external.linked.project.id=":pushwooshplugin" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$/.." external.system.id="GRADLE" external.system.module.group="Native" external.system.module.version="unspecified" type="JAVA_MODULE" version="4"> | ||
<component name="FacetManager"> | ||
<facet type="android-gradle" name="Android-Gradle"> | ||
<configuration> | ||
<option name="GRADLE_PROJECT_PATH" value=":pushwooshplugin" /> | ||
</configuration> | ||
</facet> | ||
<facet type="android" name="Android"> | ||
<configuration> | ||
<option name="SELECTED_BUILD_VARIANT" value="debug" /> | ||
<option name="SELECTED_TEST_ARTIFACT" value="_android_test_" /> | ||
<option name="ASSEMBLE_TASK_NAME" value="assembleDebug" /> | ||
<option name="COMPILE_JAVA_TASK_NAME" value="compileDebugSources" /> | ||
<option name="SOURCE_GEN_TASK_NAME" value="generateDebugSources" /> | ||
<option name="ASSEMBLE_TEST_TASK_NAME" value="assembleDebugAndroidTest" /> | ||
<option name="COMPILE_JAVA_TEST_TASK_NAME" value="compileDebugAndroidTestSources" /> | ||
<option name="TEST_SOURCE_GEN_TASK_NAME" value="generateDebugAndroidTestSources" /> | ||
<option name="ALLOW_USER_CONFIGURATION" value="false" /> | ||
<option name="MANIFEST_FILE_RELATIVE_PATH" value="/src/main/AndroidManifest.xml" /> | ||
<option name="RES_FOLDER_RELATIVE_PATH" value="/src/main/res" /> | ||
<option name="RES_FOLDERS_RELATIVE_PATH" value="file://$MODULE_DIR$/src/main/res" /> | ||
<option name="ASSETS_FOLDER_RELATIVE_PATH" value="/src/main/assets" /> | ||
<option name="LIBRARY_PROJECT" value="true" /> | ||
</configuration> | ||
</facet> | ||
</component> | ||
<component name="NewModuleRootManager" inherit-compiler-output="false"> | ||
<output url="file://$MODULE_DIR$/build/intermediates/classes/debug" /> | ||
<output-test url="file://$MODULE_DIR$/build/intermediates/classes/androidTest/debug" /> | ||
<exclude-output /> | ||
<content url="file://$MODULE_DIR$"> | ||
<sourceFolder url="file://$MODULE_DIR$/build/generated/source/r/debug" isTestSource="false" generated="true" /> | ||
<sourceFolder url="file://$MODULE_DIR$/build/generated/source/aidl/debug" isTestSource="false" generated="true" /> | ||
<sourceFolder url="file://$MODULE_DIR$/build/generated/source/buildConfig/debug" isTestSource="false" generated="true" /> | ||
<sourceFolder url="file://$MODULE_DIR$/build/generated/source/rs/debug" isTestSource="false" generated="true" /> | ||
<sourceFolder url="file://$MODULE_DIR$/build/generated/res/rs/debug" type="java-resource" /> | ||
<sourceFolder url="file://$MODULE_DIR$/build/generated/res/resValues/debug" type="java-resource" /> | ||
<sourceFolder url="file://$MODULE_DIR$/build/generated/source/r/androidTest/debug" isTestSource="true" generated="true" /> | ||
<sourceFolder url="file://$MODULE_DIR$/build/generated/source/aidl/androidTest/debug" isTestSource="true" generated="true" /> | ||
<sourceFolder url="file://$MODULE_DIR$/build/generated/source/buildConfig/androidTest/debug" isTestSource="true" generated="true" /> | ||
<sourceFolder url="file://$MODULE_DIR$/build/generated/source/rs/androidTest/debug" isTestSource="true" generated="true" /> | ||
<sourceFolder url="file://$MODULE_DIR$/build/generated/res/rs/androidTest/debug" type="java-test-resource" /> | ||
<sourceFolder url="file://$MODULE_DIR$/build/generated/res/resValues/androidTest/debug" type="java-test-resource" /> | ||
<sourceFolder url="file://$MODULE_DIR$/src/debug/res" type="java-resource" /> | ||
<sourceFolder url="file://$MODULE_DIR$/src/debug/resources" type="java-resource" /> | ||
<sourceFolder url="file://$MODULE_DIR$/src/debug/assets" type="java-resource" /> | ||
<sourceFolder url="file://$MODULE_DIR$/src/debug/aidl" isTestSource="false" /> | ||
<sourceFolder url="file://$MODULE_DIR$/src/debug/java" isTestSource="false" /> | ||
<sourceFolder url="file://$MODULE_DIR$/src/debug/jni" isTestSource="false" /> | ||
<sourceFolder url="file://$MODULE_DIR$/src/debug/rs" isTestSource="false" /> | ||
<sourceFolder url="file://$MODULE_DIR$/src/main/res" type="java-resource" /> | ||
<sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" /> | ||
<sourceFolder url="file://$MODULE_DIR$/src/main/assets" type="java-resource" /> | ||
<sourceFolder url="file://$MODULE_DIR$/src/main/aidl" isTestSource="false" /> | ||
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" /> | ||
<sourceFolder url="file://$MODULE_DIR$/src/main/jni" isTestSource="false" /> | ||
<sourceFolder url="file://$MODULE_DIR$/src/main/rs" isTestSource="false" /> | ||
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/res" type="java-test-resource" /> | ||
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/resources" type="java-test-resource" /> | ||
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/assets" type="java-test-resource" /> | ||
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/aidl" isTestSource="true" /> | ||
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/java" isTestSource="true" /> | ||
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/jni" isTestSource="true" /> | ||
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/rs" isTestSource="true" /> | ||
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/assets" /> | ||
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/bundles" /> | ||
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/classes" /> | ||
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/coverage-instrumented-classes" /> | ||
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/dependency-cache" /> | ||
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/dex" /> | ||
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/dex-cache" /> | ||
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/exploded-aar/com.android.support/animated-vector-drawable/24.0.0-beta1/jars" /> | ||
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/exploded-aar/com.android.support/appcompat-v7/24.0.0-beta1/jars" /> | ||
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/exploded-aar/com.android.support/support-v4/24.0.0-beta1/jars" /> | ||
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/exploded-aar/com.android.support/support-vector-drawable/24.0.0-beta1/jars" /> | ||
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/incremental" /> | ||
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/jacoco" /> | ||
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/javaResources" /> | ||
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/libs" /> | ||
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/lint" /> | ||
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/manifests" /> | ||
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/ndk" /> | ||
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/pre-dexed" /> | ||
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/proguard" /> | ||
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/res" /> | ||
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/rs" /> | ||
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/symbols" /> | ||
<excludeFolder url="file://$MODULE_DIR$/build/outputs" /> | ||
</content> | ||
<orderEntry type="jdk" jdkName="Android API 23 Platform" jdkType="Android SDK" /> | ||
<orderEntry type="sourceFolder" forTests="false" /> | ||
<orderEntry type="library" exported="" name="support-vector-drawable-24.0.0-beta1" level="project" /> | ||
<orderEntry type="library" exported="" name="support-annotations-24.0.0-beta1" level="project" /> | ||
<orderEntry type="library" exported="" name="animated-vector-drawable-24.0.0-beta1" level="project" /> | ||
<orderEntry type="library" exported="" name="appcompat-v7-24.0.0-beta1" level="project" /> | ||
<orderEntry type="library" exported="" name="support-v4-24.0.0-beta1" level="project" /> | ||
</component> | ||
</module> |
13 changes: 13 additions & 0 deletions
13
src/android/src/androidTest/java/com/pushwoosh/reactnativeplugin/ApplicationTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.pushwoosh.reactnativeplugin; | ||
|
||
import android.app.Application; | ||
import android.test.ApplicationTestCase; | ||
|
||
/** | ||
* <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a> | ||
*/ | ||
public class ApplicationTest extends ApplicationTestCase<Application> { | ||
public ApplicationTest() { | ||
super(Application.class); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.pushwoosh.reactnativeplugin"> | ||
|
||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> | ||
|
||
<!-- Permission to get DeviceId --> | ||
<uses-permission android:name="android.permission.READ_PHONE_STATE"/> | ||
|
||
<!-- GCM connects to Google Services. --> | ||
<uses-permission android:name="android.permission.INTERNET"/> | ||
|
||
<!-- GCM requires a Google account. --> | ||
<uses-permission android:name="android.permission.GET_ACCOUNTS"/> | ||
|
||
<!-- Keeps the processor from sleeping when a message is received. --> | ||
<uses-permission android:name="android.permission.WAKE_LOCK"/> | ||
|
||
<!-- Enables vibration permission for notification. --> | ||
<uses-permission android:name="android.permission.VIBRATE" /> | ||
|
||
<!-- | ||
Creates a custom permission so only this app can receive its messages. | ||
NOTE: the permission *must* be called PACKAGE.permission.C2D_MESSAGE, | ||
where PACKAGE is the application's package name. | ||
--> | ||
<permission | ||
android:name="${applicationId}.permission.C2D_MESSAGE" | ||
android:protectionLevel="signature"/> | ||
<uses-permission | ||
android:name="${applicationId}.permission.C2D_MESSAGE"/> | ||
|
||
<!-- This app has permission to register and receive data message. --> | ||
<uses-permission | ||
android:name="com.google.android.c2dm.permission.RECEIVE"/> | ||
|
||
|
||
<application android:allowBackup="true" android:label="@string/app_name"> | ||
<meta-data android:name="PW_NOTIFICATION_RECEIVER" android:value="com.pushwoosh.reactnativeplugin.NotificationReceiver"/> | ||
|
||
<receiver | ||
android:name="com.google.android.gms.gcm.GcmReceiver" | ||
android:exported="true" | ||
android:permission="com.google.android.c2dm.permission.SEND" > | ||
<intent-filter> | ||
<action android:name="com.google.android.c2dm.intent.RECEIVE" /> | ||
<category android:name="${applicationId}" /> | ||
</intent-filter> | ||
</receiver> | ||
|
||
<receiver android:name=".NotificationReceiver" /> | ||
</application> | ||
|
||
</manifest> |
Oops, something went wrong.