Skip to content

Commit

Permalink
Merge pull request #37 from mendix/development-1.0
Browse files Browse the repository at this point in the history
#720387: Release MxPushNotifications module v1.0.0
  • Loading branch information
sjoerdbreur authored Jul 13, 2016
2 parents fb60277 + 7087227 commit 5b45287
Show file tree
Hide file tree
Showing 221 changed files with 616 additions and 46,238 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
dist/
**/javasource/**/proxies/
test/releases/
test/deployment/
test/.classpath
test/.project
Expand All @@ -8,4 +11,5 @@ test/.svn
*.lock
.idea/
nbproject
node_modules
node_modules
dist
29 changes: 29 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
This product is available under a "Apache 2.0" license.

Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
Expand Down Expand Up @@ -199,3 +201,30 @@ Apache License
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

END OF APPENDIX


THIRD-PARTY LIBRARIES

This product bundles Java Apple Push Notification Service Library 1.0.0.Beta3-MENDIX, which is available under a "3-clause BSD" license. For details, see userlib/licenses.

This product bundles Jackson-annotations 2.1.0, which is available under a "Apache 2.0" license. For details, see userlib/licenses.

This product bundles Jackson-core 2.1.0, which is available under a "Apache 2.0" license. For details, see userlib/licenses.

This product bundles Jackson-databind 2.1.0, which is available under a "Apache 2.0" license. For details, see userlib/licenses.

This product bundles JSON.simple 1.1, which is available under a "Apache 2.0" license. For details, see userlib/licenses.

This product bundles Apache Commons IO 2.3, which is available under a "Apache 2.0" license. For details, see userlib/licenses.

This product bundles Apache ServiceMix :: Bundles :: commons-codec 1.3, which is available under a "Apache 2.0" license. For details, see userlib/licenses.

This product bundles Smack-core 4.0.1, which is available under a "Apache 2.0" license. For details, see userlib/licenses.

This product bundles Smack-tcp 4.0.1, which is available under a "Apache 2.0" license. For details, see userlib/licenses.

This product bundles XmlPull 1.0.5, which is in the public domain. For details, see userlib/licenses.

This product bundles XmlPull XPP3 1.1.4c, which is available under a "Indiana University Extreme! Lab Software License" license. For details, see userlib/licenses.
325 changes: 1 addition & 324 deletions README.md

Large diffs are not rendered by default.

Binary file added assets/images/config.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
100 changes: 100 additions & 0 deletions example config/config.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,100 @@
<?xml version="1.0" encoding="UTF-8" ?>
<widget xmlns = "http://www.w3.org/ns/widgets"
xmlns:gap = "http://phonegap.com/ns/1.0"
id = "com.mendix.pushnoticationstest"
version = "0.0.2" >

<name>PushNotfications Connector</name>

<description></description>

<!--
Current latest and default version
Platform versions don't follow a common version number anymore
(see: http://phonegap.com/blog/2015/06/16/phonegap-updated-on-build/).
Instead, Phonegap Build derives the platform versions from the CLI
defaults.
-->
<preference name="phonegap-version" value="cli-5.2.0" />

<!--
On iOS, the statusbar is transparent by default and is drawn over the top
of our app.
-->
<preference name="StatusBarOverlaysWebView" value="false" />
<preference name="StatusBarBackgroundColor" value="#000000" />

<!--
Set proper defaults for `cordova.file.dataDirectory`.
-->
<preference name="AndroidPersistentFileLocation" value="Internal" />
<preference name="iosPersistentFileLocation" value="Library" />

<!--
Disable backup to iCloud on iOS.
-->
<preference name="BackupWebStorage" value="none" />

<!-- allow assets to be loaded and open links in the app itself, see: http://phonegap.com/blog/2012/03/20/access-tags/ -->
<!-- Issue 204079: Allow retrieval of any resource. Custom widgets can point to anything. -->
<access origin="*" />

<preference name="android-build-tool" value="gradle" />
<gap:plugin name="phonegap-plugin-push" source="npm" version="1.5.3" />
<gap:plugin name="cordova-plugin-battery-status" source="npm" version="1.1.0" />
<gap:plugin name="cordova-plugin-camera" source="npm" version="1.2.0" />
<gap:plugin name="cordova-plugin-console" source="npm" version="1.0.1" />
<gap:plugin name="cordova-plugin-contacts" source="npm" version="1.1.0" />
<gap:plugin name="cordova-plugin-device" source="npm" version="1.0.1" />
<gap:plugin name="cordova-plugin-device-motion" source="npm" version="1.1.1" />
<gap:plugin name="cordova-plugin-device-orientation" source="npm" version="1.0.1" />
<gap:plugin name="cordova-plugin-dialogs" source="npm" version="1.1.1" />
<gap:plugin name="cordova-plugin-file" source="npm" version="2.1.0" />
<gap:plugin name="cordova-plugin-geolocation" source="npm" version="1.0.1" />
<gap:plugin name="cordova-plugin-globalization" source="npm" version="1.0.1" />
<gap:plugin name="cordova-plugin-inappbrowser" source="npm" version="1.0.1" />
<gap:plugin name="cordova-plugin-media-capture" source="npm" version="1.0.1" />
<gap:plugin name="cordova-plugin-media" source="npm" version="1.0.1" />
<gap:plugin name="cordova-plugin-network-information" source="npm" version="1.0.1" />
<gap:plugin name="cordova-plugin-splashscreen" source="npm" version="2.1.0" />
<gap:plugin name="cordova-plugin-statusbar" source="npm" version="1.0.1" />
<gap:plugin name="cordova-plugin-vibration" source="npm" version="1.2.0" />
<gap:plugin name="cordova-plugin-zip" source="npm" version="3.0.0" />
<gap:plugin name="cordova-plugin-whitelist" source="npm" version="1.0.0" />
<gap:plugin name="phonegap-plugin-barcodescanner" source="npm" version="3.1.2" />


<gap:platform name="android" />

<!-- Icon definitions - for more details: http://developer.android.com/guide/topics/resources/providing-resources.html -->
<icon src="res/android/ldpi.png" gap:platform="android" gap:qualifier="ldpi"/>
<!-- Icon definitions - for more details: http://developer.android.com/guide/topics/resources/providing-resources.html -->
<icon src="res/android/xhdpi.png" gap:platform="android" gap:qualifier="xhdpi"/>
<!-- Icon definitions - for more details: http://developer.android.com/guide/topics/resources/providing-resources.html -->
<gap:splash src="res/android/land-ldpi.png" gap:platform="android" gap:qualifier="land-ldpi"/>
<!-- Icon definitions - for more details: http://developer.android.com/guide/topics/resources/providing-resources.html -->
<gap:splash src="res/android/land-hdpi.png" gap:platform="android" gap:qualifier="land-hdpi"/>
<!-- Icon definitions - for more details: http://developer.android.com/guide/topics/resources/providing-resources.html -->
<icon src="res/android/mdpi.png" gap:platform="android" gap:qualifier="mdpi"/>
<!-- Icon definitions - for more details: http://developer.android.com/guide/topics/resources/providing-resources.html -->
<gap:splash src="res/android/land-xhdpi.png" gap:platform="android" gap:qualifier="land-xhdpi"/>
<!-- Icon definitions - for more details: http://developer.android.com/guide/topics/resources/providing-resources.html -->
<gap:splash src="res/android/port-ldpi.png" gap:platform="android" gap:qualifier="port-ldpi"/>
<!-- Icon definitions - for more details: http://developer.android.com/guide/topics/resources/providing-resources.html -->
<gap:splash src="res/android/port-hdpi.png" gap:platform="android" gap:qualifier="port-hdpi"/>
<!-- Icon definitions - for more details: http://developer.android.com/guide/topics/resources/providing-resources.html -->
<gap:splash src="res/android/port-xhdpi.png" gap:platform="android" gap:qualifier="port-xhdpi"/>
<!-- Icon definitions - for more details: http://developer.android.com/guide/topics/resources/providing-resources.html -->
<gap:splash src="res/android/land-mdpi.png" gap:platform="android" gap:qualifier="land-ldpi"/>
<!-- Icon definitions - for more details: http://developer.android.com/guide/topics/resources/providing-resources.html -->
<icon src="res/android/xxhdpi.png" gap:platform="android" gap:qualifier="xxhdpi"/>
<!-- Icon definitions - for more details: http://developer.android.com/guide/topics/resources/providing-resources.html -->
<gap:splash src="res/android/port-mdpi.png" gap:platform="android" gap:qualifier="port-ldpi"/>
<!-- Icon definitions - for more details: http://developer.android.com/guide/topics/resources/providing-resources.html -->
<icon src="res/android/hdpi.png" gap:platform="android" gap:qualifier="hdpi"/>



<gap:plugin name="cordova-plugin-file-transfer" source="npm" version="1.2.0" />
<gap:plugin name="cordova-sqlite-storage" source="npm" version="0.7.10" />
</widget>
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "pushNotifications",
"version": "2.0.2",
"name": "MxPushNotifications",
"version": "1.0.0",
"description": "Phonegap widget for notifications",
"license": "MIT",
"author": "Simon Black",
"license": "Apache 2.0",
"author": "Mendix Technology B.V.",
"private": false,
"dependencies": {},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/package.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://www.mendix.com/package/1.0/">
<clientModule name="pushNotifications" version="2.0.2" xmlns="http://www.mendix.com/clientModule/1.0/">
<clientModule name="MxPushNotifications" version="1.0.0" xmlns="http://www.mendix.com/clientModule/1.0/">
<widgetFiles>
<widgetFile path="pushNotifications/pushNotifications.xml"/>
</widgetFiles>
Expand Down
71 changes: 0 additions & 71 deletions src/pushNotifications/lib/PushNotification.js

This file was deleted.

Loading

0 comments on commit 5b45287

Please sign in to comment.