Skip to content
This repository was archived by the owner on Oct 18, 2024. It is now read-only.

Commit 4967024

Browse files
author
Chris Board
committed
Better connection timeout handling
- Fixed issue so that the connection timeout doesn't the default Android socket timeout - which can be several minutes - Changed default connection timeout to be 30 seconds - Added new method "setConnectionTimeout" to Connection class to override the default conection timeout in seconds.
1 parent 690d677 commit 4967024

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
0 Bytes
Binary file not shown.

AndroidMySQLConnector/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ android {
3030
//applicationId "com.BoardiesITSolutions.AndroidMySQLConnector"
3131
minSdkVersion 19
3232
targetSdkVersion 30
33-
versionCode 36
33+
versionCode 37
3434
versionName "0.48"
3535
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
3636
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
buildscript {
55

66
ext {
7-
publishToMavenLocal = true
7+
publishToMavenLocal = false
88
}
99

1010
repositories {

demoapplication/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ android {
2929
dependencies {
3030
implementation fileTree(dir: 'libs', include: ['*.jar'])
3131

32-
implementation 'androidx.appcompat:appcompat:1.1.0'
33-
implementation 'com.github.BoardiesITSolutions:Android-MySQL-Connector:0.47_MySQL8'
32+
implementation 'androidx.appcompat:appcompat:1.2.0'
33+
implementation 'com.github.BoardiesITSolutions:Android-MySQL-Connector:0.48_MySQL8'
3434

3535
}

0 commit comments

Comments
 (0)