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

Commit

Permalink
Better connection timeout handling
Browse files Browse the repository at this point in the history
- 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.
  • Loading branch information
Chris Board committed Mar 24, 2021
1 parent 690d677 commit 4967024
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Binary file modified .idea/caches/build_file_checksums.ser
Binary file not shown.
2 changes: 1 addition & 1 deletion AndroidMySQLConnector/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ android {
//applicationId "com.BoardiesITSolutions.AndroidMySQLConnector"
minSdkVersion 19
targetSdkVersion 30
versionCode 36
versionCode 37
versionName "0.48"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
buildscript {

ext {
publishToMavenLocal = true
publishToMavenLocal = false
}

repositories {
Expand Down
4 changes: 2 additions & 2 deletions demoapplication/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])

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

}

0 comments on commit 4967024

Please sign in to comment.