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

Commit 5ebc9dc

Browse files
author
Chris Board
committed
Fixed issue where COM_QueryResponse would inadvertently detect a MySQL Error packet and then throw an error because it wasn't actually a MySQL Error Packet.
1 parent a84507a commit 5ebc9dc

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

AndroidMySQLConnector/build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,23 @@
33
buildscript {
44
repositories {
55
if (rootProject.ext.publishToMavenLocal) {
6-
6+
apply plugin: 'maven-publish'
77
mavenLocal()
88
}
99
}
1010
}
11-
apply plugin: 'maven-publish'
11+
1212
apply plugin: 'com.android.library'
13+
apply plugin: 'maven-publish'
1314
if (rootProject.ext.publishToMavenLocal)
1415
{
1516
println("using maven local")
16-
apply plugin: 'maven-publish'
17+
1718
}
1819
else
1920
{
2021
println("Not using maven local")
21-
apply plugin: 'com.github.dcendents.android-maven'
22+
//apply plugin: 'com.github.dcendents.android-maven'
2223
}
2324

2425
archivesBaseName="AndroidMySQLConnector"

0 commit comments

Comments
 (0)