This file contains hidden or 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
TextView tv = ButterKnife.findById(layout, R.id.tv); | |
tv.setAutoLinkMask(Linkify.PHONE_NUMBERS); | |
tv.setLinksClickable(true); | |
Pattern pattern = Pattern.compile("(\\d[\\s-]*){4,22}\\d"); | |
Linkify.addLinks(tv, pattern, "tel:"); |
This file contains hidden or 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
10-05 19:20:06.856 327-1403/com.ekoapp.eko D/Retrofit: ---> HTTP POST https://scb-h1.ekoapp.com/file/upload-image | |
10-05 19:20:06.856 327-1403/com.ekoapp.eko D/Retrofit: Content-Type: multipart/form-data; boundary=4b3d1873-b4a9-4968-8229-12b7cf32a2dc | |
10-05 19:20:06.856 327-1403/com.ekoapp.eko D/Retrofit: Content-Length: 312941 | |
10-05 19:20:06.856 327-1403/com.ekoapp.eko D/Retrofit: #0: /storage/emulated/0/Download/11.jpg (image/jpeg) | |
10-05 19:20:06.856 327-1403/com.ekoapp.eko D/Retrofit: ---> END HTTP (312941-byte body) | |
10-05 19:20:08.649 327-1403/com.ekoapp.eko D/Retrofit: ---- ERROR https://scb-h1.ekoapp.com/file/upload-image | |
10-05 19:20:08.651 327-1403/com.ekoapp.eko D/Retrofit: javax.net.ssl.SSLException: Read error: ssl=0x9e4d9800: I/O error during system call, Connection reset by peer | |
10-05 19:20:08.651 327-1403/com.ekoapp.eko D/Retrofit: at com.android.org.conscrypt.NativeCrypto.SSL_read(Native Method) | |
10-05 19:20:08.651 327-1403/com.ekoapp.eko D/Retrofit: at com.android.org.conscrypt.OpenSSLSock |
This file contains hidden or 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
public interface Publisher<T> { | |
void subscribe(Subscriber<? super T> s); | |
} | |
public interface Subscriber<T> { | |
void onSubscribe(Subscription s); | |
void onNext(T t); | |
void onError(Throwable t); | |
void onComplete(); | |
} |
This file contains hidden or 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
# Version 1.0.0 (2018-07-10) | |
Eko Messaging SDK `1.0.0` is released. | |
### API / Behavior Changes | |
### Bug Fixes | |
### Deprecations |
This file contains hidden or 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
Eko Login SDK Android integration | |
Requirements: | |
1. Minimum Android API 21 | |
2. Enable Java 8 | |
Steps: |
This file contains hidden or 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
Firebase Auth REST SDK Android integration | |
Requirements: | |
1. Minimum Android API 21 | |
2. Enable Java 8 | |
Steps: |