Skip to content

Commit

Permalink
release v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
farbod-s committed Dec 14, 2019
1 parent f747190 commit 47cf3b9
Show file tree
Hide file tree
Showing 21 changed files with 54 additions and 52 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions chabok-starter-cordova/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions chabok-starter-cordova/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@
"author": "Apache Cordova Team",
"license": "Apache-2.0",
"dependencies": {
"com.chabokpush.cordova": "^1.0.0",
"cordova-android": "^8.1.0",
"cordova-ios": "^5.1.1",
"io.chabok.cordovaplugin": "^1.1.4"
"cordova-ios": "^5.1.1"
},
"devDependencies": {
"cordova-plugin-whitelist": "^1.3.3"
},
"cordova": {
"plugins": {
"cordova-plugin-whitelist": {},
"io.chabok.cordovaplugin": {}
"com.chabokpush.cordova": {}
},
"platforms": [
"android",
Expand Down
2 changes: 1 addition & 1 deletion chabok-starter-cordova/plugins/android.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"cordova-plugin-whitelist": {
"PACKAGE_NAME": "com.adpdigital.chabok.starter"
},
"io.chabok.cordovaplugin": {
"com.chabokpush.cordova": {
"PACKAGE_NAME": "com.adpdigital.chabok.starter"
}
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
"_from": "io.chabok.cordovaplugin",
"_id": "io.chabok.cordovaplugin@1.1.4",
"_from": "com.chabokpush.cordova",
"_id": "com.chabokpush.cordova@1.0.0",
"_inBundle": false,
"_integrity": "sha512-XrcDa7HoGqCVCWqt0RAaSHzzAVvqRFDA44D0P1iIJwd5vZNfKn4ul64neDF6hug0GFNL2ax+XMOs7DInqJCtFQ==",
"_location": "/io.chabok.cordovaplugin",
"_integrity": "sha512-sTy5VRL3aKLo5IzsjArn1kb7WxBsNcAsixlZzSKMG8kQ5KPZiY8fJ8XJ/MmPOGcH96+htAo+NtcBmHXGQ93Lmg==",
"_location": "/com.chabokpush.cordova",
"_phantomChildren": {},
"_requested": {
"type": "tag",
"registry": true,
"raw": "io.chabok.cordovaplugin",
"name": "io.chabok.cordovaplugin",
"escapedName": "io.chabok.cordovaplugin",
"raw": "com.chabokpush.cordova",
"name": "com.chabokpush.cordova",
"escapedName": "com.chabokpush.cordova",
"rawSpec": "",
"saveSpec": null,
"fetchSpec": "latest"
Expand All @@ -19,16 +19,16 @@
"#USER",
"/"
],
"_resolved": "https://registry.npmjs.org/io.chabok.cordovaplugin/-/io.chabok.cordovaplugin-1.1.4.tgz",
"_shasum": "170fa25fe1dc267f4d512758e9b05385e662a593",
"_spec": "io.chabok.cordovaplugin",
"_resolved": "https://registry.npmjs.org/com.chabokpush.cordova/-/com.chabokpush.cordova-1.0.0.tgz",
"_shasum": "66ea1acc726cfb92694b06b394973d7fc971e898",
"_spec": "com.chabokpush.cordova",
"_where": "/Users/farbod/Documents/Github/chabok/chabok-starter-cordova/chabok-starter-cordova",
"author": {
"name": "Chabok Realtime Solutions"
},
"bundleDependencies": false,
"cordova": {
"id": "io.chabok.cordovaplugin",
"id": "com.chabokpush.cordova",
"platforms": [
"android",
"ios"
Expand All @@ -42,6 +42,6 @@
"cordova-ios"
],
"license": "ISC",
"name": "io.chabok.cordovaplugin",
"version": "1.1.4"
"name": "com.chabokpush.cordova",
"version": "1.0.0"
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version='1.0' encoding='utf-8'?>
<plugin id="io.chabok.cordovaplugin"
version="1.1.4"
<plugin id="com.chabokpush.cordova"
version="1.0.0"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>ChabokPush</name>
Expand All @@ -21,15 +21,15 @@
target="res/xml/config.xml">
<feature name="ChabokPush">
<param name="android-package"
value="io.chabok.cordovaplugin.ChabokPush"/>
value="com.chabokpush.cordova.ChabokPush"/>
<param name="onload" value="true" />
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*" />
<source-file src="src/android/ChabokPush.java"
target-dir="src/io/chabok/cordovaplugin/ChabokPush"/>
target-dir="src/com/chabokpush/cordova/ChabokPush"/>
<source-file src="src/android/MyAppClass.java"
target-dir="src/io/chabok/cordovaplugin/ChabokPush" />
target-dir="src/com/chabokpush/cordova/ChabokPush" />

<config-file target="AndroidManifest.xml" parent="/manifest/application">
<meta-data android:name="com.adpdigital.push.client.PlatformType"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
package io.chabok.cordovaplugin;
package com.chabokpush.cordova;

import android.content.Context;
import android.net.Uri;
import android.util.Log;

import com.adpdigital.push.AdpPushClient;
import com.adpdigital.push.AppState;
import com.adpdigital.push.Callback;
import com.adpdigital.push.ConnectionStatus;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.chabok.cordovaplugin;
package com.chabokpush.cordova;

import android.app.Application;

Expand Down
4 changes: 2 additions & 2 deletions chabok-starter-cordova/plugins/fetch.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
"is_top_level": true,
"variables": {}
},
"io.chabok.cordovaplugin": {
"com.chabokpush.cordova": {
"source": {
"type": "registry",
"id": "io.chabok.cordovaplugin"
"id": "com.chabokpush.cordova"
},
"is_top_level": true,
"variables": {}
Expand Down
2 changes: 1 addition & 1 deletion chabok-starter-cordova/plugins/ios.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"cordova-plugin-whitelist": {
"PACKAGE_NAME": "$(PRODUCT_BUNDLE_IDENTIFIER)"
},
"io.chabok.cordovaplugin": {
"com.chabokpush.cordova": {
"PACKAGE_NAME": "$(PRODUCT_BUNDLE_IDENTIFIER)"
}
},
Expand Down

0 comments on commit 47cf3b9

Please sign in to comment.