This repository was archived by the owner on Oct 18, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +7
-6
lines changed
java/com/BoardiesITSolutions/AndroidMySQLConnector Expand file tree Collapse file tree 5 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 20
20
}
21
21
22
22
archivesBaseName= " AndroidMySQLConnector"
23
- version ' 0.40 '
23
+ version ' 0.41 '
24
24
group ' com.BoardiesITSolutions'
25
25
26
26
@@ -30,8 +30,8 @@ android {
30
30
// applicationId "com.BoardiesITSolutions.AndroidMySQLConnector"
31
31
minSdkVersion 19
32
32
targetSdkVersion 29
33
- versionCode 28
34
- versionName " 0.40 "
33
+ versionCode 29
34
+ versionName " 0.41 "
35
35
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
36
36
}
37
37
buildTypes {
Original file line number Diff line number Diff line change 6
6
android : icon =" @mipmap/ic_launcher"
7
7
android : label =" @string/app_name"
8
8
android : roundIcon =" @mipmap/ic_launcher_round"
9
- android : supportsRtl =" true"
10
- android : theme =" @style/AppTheme" />
9
+ android : supportsRtl =" true" />
11
10
</manifest >
Original file line number Diff line number Diff line change @@ -93,6 +93,7 @@ public class Connection
93
93
private final int UTF8_GENERAL_CI = 0x21 ;
94
94
private final int UTF8_UNICODE_CI =0xc0 ;
95
95
private final int UTF8MB4_UNICODE_CI = 0xe0 ;
96
+ private final int UTF8MB4 = 0xff ;
96
97
private final int BINARY = 0x3f ;
97
98
98
99
private AppCompatActivity activity ;
@@ -492,6 +493,7 @@ private void setCharset() throws UnsupportedMySQLServerException {
492
493
case UTF8_GENERAL_CI :
493
494
case UTF8_UNICODE_CI :
494
495
case UTF8MB4_UNICODE_CI :
496
+ case UTF8MB4 :
495
497
charset = Charset .forName ("UTF-8" );
496
498
break ;
497
499
default :
Original file line number Diff line number Diff line change @@ -30,6 +30,6 @@ dependencies {
30
30
implementation fileTree(dir : ' libs' , include : [' *.jar' ])
31
31
32
32
implementation ' androidx.appcompat:appcompat:1.1.0'
33
- implementation ' com.github.BoardiesITSolutions:Android-MySQL-Connector:0.40_MySQL8 '
33
+ implementation ' com.github.BoardiesITSolutions:Android-MySQL-Connector:0.41_MySQL8 '
34
34
35
35
}
You can’t perform that action at this time.
0 commit comments