Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v2.1.0 #7

Merged
merged 30 commits into from
Nov 17, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
e4dc4b0
Disable Chabok realtime
jouybari Jul 8, 2020
542a5cc
Change Chabok module form version to path
jouybari Jul 8, 2020
74e63cb
Change Chabok module form version to path
jouybari Jul 8, 2020
7d0bb92
Update iOS SDK version to 2.2.0
jouybari Jul 8, 2020
a4b9175
Refactor Chabok iOS bridge class name to ChabokPush
jouybari Jul 8, 2020
fccd7d6
Refactor Chabok Android bridge class name
jouybari Jul 8, 2020
e50cfbe
Update Android SDK version 3.3.1
jouybari Jul 8, 2020
9684d0b
Update gitignore
jouybari Jul 8, 2020
eac2beb
Add readme for contributing on the library
Husseinhj Nov 2, 2020
e2a9449
Update android SDK v3.4.0
Husseinhj Nov 2, 2020
4828bd1
Update history for breaking changes
Husseinhj Nov 2, 2020
9eb9951
v2.1.0
Husseinhj Nov 2, 2020
d3c2d9d
Add how run in each platform
Husseinhj Nov 2, 2020
5e5391e
Update contributing guide line
Husseinhj Nov 2, 2020
4978b29
Add content of table to contributing guide line
Husseinhj Nov 2, 2020
89ed2a9
Update README.md
Husseinhj Nov 2, 2020
946a6d1
Update contributing guide line
Husseinhj Nov 2, 2020
e883ac5
Update history
Husseinhj Nov 2, 2020
4e99f44
Update contributing guide line
Husseinhj Nov 2, 2020
c88ecaa
Add commands for run iOS sample
Husseinhj Nov 2, 2020
8aa29fa
Fix bug run in iOS platform
Husseinhj Nov 2, 2020
6e34c1f
Update history file
Husseinhj Nov 2, 2020
292ca7b
Update README.md
Husseinhj Nov 2, 2020
426dd15
Update README.md
Husseinhj Nov 2, 2020
4caf1ec
Update README.md
Husseinhj Nov 2, 2020
e3bb69a
Update README.md
Husseinhj Nov 2, 2020
a9f1c63
Android v3.4.1
Husseinhj Nov 17, 2020
f9d5386
Merge branch 'dev' of https://github.com/chabok-io/chabok-client-rn i…
Husseinhj Nov 17, 2020
716b9bb
iOS SDK v2.2.1
Husseinhj Nov 17, 2020
fcb3c9a
Update history
Husseinhj Nov 17, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,11 @@ local.properties
dist

package-lock\.json

react-native-chabok/android/gradle/

TestProject/ios/Podfile.lock

react-native-chabok/android/gradlew

react-native-chabok/android/gradlew.bat
4 changes: 2 additions & 2 deletions TestProject/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ export default class App extends React.Component {
alert('referralId = ' + referralId);
});

const chabokEmitter = new NativeEventEmitter(NativeModules.AdpPushClient);
const chabokEmitter = new NativeEventEmitter(NativeModules.ChabokPush);

chabokEmitter.removeAllListeners('onSubscribe');
chabokEmitter.removeAllListeners('onUnsubscribe');
chabokEmitter.removeAllListeners('connectionStatus');
Expand Down
4 changes: 2 additions & 2 deletions TestProject/android/app/Chabok.sandbox.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"apiKey": "70df4ae2e1fd03518ce3e3b21ee7ca7943577749",
"username": "chabok-starter",
"password": "chabok-starter",
"realtime": true,
"realtime": false,
"pushNotification": true
}
}
348 changes: 0 additions & 348 deletions TestProject/ios/Podfile.lock

This file was deleted.

2 changes: 1 addition & 1 deletion TestProject/ios/TestProject/Chabok.sandbox.plist
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<key>password</key>
<string>chabok-starter</string>
<key>realtime</key>
<true/>
<false/>
<key>pushNotification</key>
<true/>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion TestProject/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"dependencies": {
"react": "16.9.0",
"react-native": "0.61.5",
"react-native-chabok": "^1.5.0"
"react-native-chabok": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.7.7",
Expand Down
Loading