Skip to content

Commit ef1ef5e

Browse files
authored
Merge pull request #164 from m1ga/androidUpdate
feat(android): update socket deps
2 parents 0c02a47 + 0ea973d commit ef1ef5e

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44

55
## Requirements
66

7-
- [x] Android: Titanium SDK 7.0.0+
7+
- [x] Android: Titanium SDK 9.0.0+
88
- [x] iOS: Titanium SDK 7.4.0+ / Xcode 10.2 / Swift 5.0+
99

1010
> 💡 The iOS module is built with Swift 5.0 and you need to have the same Swift version installed to be able to use this module. You can check your current Swift version by using swift -v from the terminal.
1111
12+
> 💡 The Android module version 4.x will support Socket.io Server 3.x/4.x
13+
1214
## Getting started
1315

1416
Install the module to your project or globally by copying it into the modules folder. After that enable it in your tiapp.xml.
@@ -102,13 +104,12 @@ Based on the [socket.io-client-java](https://github.com/socketio/socket.io-clien
102104
## Contributions
103105

104106
Open source contributions are greatly appreciated! If you have a bugfix, improvement or new feature, please create
105-
[an issue](https://github.com/appcelerator-modules/titanium-socketio/issues/new) first and submit a [pull request](https://github.com/appcelerator-modules/titanium-socketio/pulls/new) against master.
107+
[an issue](https://github.com/tidev/titanium-socketio/issues/new) first and submit a [pull request](https://github.com/tidev/titanium-socketio/pulls/new) against master.
106108

107109
## Getting Help
108110

109111
If you have questions about the Socket.IO module for Titanium, feel free to reach out on Stackoverflow or the
110-
`#helpme` channel on [TiSlack](http://tislack.org). In case you find a bug, create a [new issue](/issues/new)
111-
or open a [new JIRA ticket](https://jira.appcelerator.org).
112+
`#helpme` channel on [TiSlack](http://tislack.org). In case you find a bug, create a [new issue](/issues/new).
112113

113114
## Legal
114115

android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ buildscript {
55
}
66

77
dependencies {
8-
implementation ('io.socket:socket.io-client:1.0.0') {
8+
implementation ('io.socket:socket.io-client:2.1.0') {
99
// excluding org.json which is provided by Android
1010
exclude group: 'org.json', module: 'json'
1111
}
12-
}
12+
}

android/manifest

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# this is your module manifest and used by Titanium
33
# during compilation, packaging, distribution, etc.
44
#
5-
version: 3.0.1
5+
version: 4.0.0
66
apiversion: 4
77
architectures: arm64-v8a armeabi-v7a x86 x86_64
88
description: ti.socketio
@@ -16,4 +16,4 @@ moduleid: ti.socketio
1616
guid: 65fbdc59-432f-40d8-8ea9-02799887db3c
1717
platform: android
1818
minsdk: 9.0.0
19-
commonjs: true
19+
commonjs: true

0 commit comments

Comments
 (0)