Skip to content
This repository was archived by the owner on Feb 19, 2020. It is now read-only.

Commit dbd24e7

Browse files
author
Anna Kocheshkova
authored
Merge pull request #425 from bitstadium/release/5.2.0
Release/5.2.0
2 parents 9e5d533 + 6084db0 commit dbd24e7

25 files changed

+508
-142
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![Slack Status](https://slack.hockeyapp.net/badge.svg)](https://slack.hockeyapp.net)
22

3-
## Version 5.1.1
3+
## Version 5.2.0
44

55
HockeySDK-Android implements support for using HockeyApp in your Android applications.
66

@@ -25,7 +25,7 @@ It is super easy to use HockeyApp in your Android app. Have a look at our [docum
2525

2626
Please visit [our landing page](https://support.hockeyapp.net/kb/client-integration-android) as a starting point for all of our documentation.
2727

28-
Please check out our [getting started documentation](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk), [change log](https://github.com/bitstadium/HockeySDK-Android/releases/tag/5.1.1), [java doc](https://www.hockeyapp.net/help/sdk/android/5.1.1/index.html) as well as our [troubleshooting section](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk#troubleshooting).
28+
Please check out our [getting started documentation](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk), [change log](https://github.com/bitstadium/HockeySDK-Android/releases/tag/5.2.0), [java doc](https://www.hockeyapp.net/help/sdk/android/5.2.0/index.html) as well as our [troubleshooting section](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk#troubleshooting).
2929

3030
## 3. Contributing
3131

build.gradle

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
google()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:3.0.1'
9+
classpath 'com.android.tools.build:gradle:3.3.0'
1010
classpath 'com.novoda:bintray-release:0.8.0'
1111
}
1212
}
@@ -37,8 +37,8 @@ allprojects {
3737

3838
ext {
3939
ARTIFACT_ID = 'HockeySDK'
40-
VERSION_NAME = '5.1.1'
41-
VERSION_CODE = 20
40+
VERSION_NAME = '5.2.0'
41+
VERSION_CODE = 21
4242
SITE_URL = 'https://github.com/bitstadium/hockeysdk-android'
4343
GIT_URL = 'https://github.com/bitstadium/HockeySDK-Android.git'
4444
BINTRAY_USER = HOCKEYAPP_BINTRAY_USER

gradle/wrapper/gradle-wrapper.jar

857 Bytes
Binary file not shown.
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.3-all.zip
34
zipStoreBase=GRADLE_USER_HOME
45
zipStorePath=wrapper/dists
5-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4.1-all.zip

gradlew

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ APP_NAME="Gradle"
2828
APP_BASE_NAME=`basename "$0"`
2929

3030
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
31-
DEFAULT_JVM_OPTS=""
31+
DEFAULT_JVM_OPTS='"-Xmx64m"'
3232

3333
# Use the maximum available, or set MAX_FD != -1 to use that value.
3434
MAX_FD="maximum"

gradlew.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ set APP_BASE_NAME=%~n0
1414
set APP_HOME=%DIRNAME%
1515

1616
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
17-
set DEFAULT_JVM_OPTS=
17+
set DEFAULT_JVM_OPTS="-Xmx64m"
1818

1919
@rem Find java.exe
2020
if defined JAVA_HOME goto findJavaFromJavaHome

hockeysdk/build.gradle

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ android {
55
compileSdkVersion COMPILE_SDK
66

77
defaultConfig {
8-
minSdkVersion 15
8+
minSdkVersion 16
99
targetSdkVersion 28
1010
versionCode VERSION_CODE
1111
versionName VERSION_NAME
@@ -17,6 +17,11 @@ android {
1717
minifyEnabled false
1818
}
1919
}
20+
testOptions {
21+
unitTests.all {
22+
jvmArgs '-noverify'
23+
}
24+
}
2025
lintOptions {
2126
disable 'GoogleAppIndexingWarning','RtlEnabled'
2227
textReport true

hockeysdk/proguard-rules.pro

+4
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,7 @@
66
-keepclassmembers class net.hockeyapp.android.UpdateFragment {
77
*;
88
}
9+
10+
-keepclassmembers class * implements javax.net.ssl.SSLSocketFactory {
11+
private final javax.net.ssl.SSLSocketFactory delegate;
12+
}

hockeysdk/src/androidTest/java/net/hockeyapp/android/metrics/SenderTests.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import org.junit.runner.RunWith;
1212

1313
import java.io.File;
14-
import java.net.HttpURLConnection;
14+
import javax.net.ssl.HttpsURLConnection;
1515
import java.util.concurrent.Executor;
1616

1717
import static org.junit.Assert.*;
@@ -55,7 +55,7 @@ public void testInstanceInitialisation() throws Exception {
5555

5656
@Test
5757
public void testCreateConnection() {
58-
HttpURLConnection connection = sut.createConnection();
58+
HttpsURLConnection connection = sut.createConnection();
5959
assertNotNull(connection);
6060

6161
}

hockeysdk/src/main/java/net/hockeyapp/android/CrashManager.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import net.hockeyapp.android.utils.AsyncTaskUtils;
1919
import net.hockeyapp.android.utils.CompletedFuture;
2020
import net.hockeyapp.android.utils.HockeyLog;
21-
import net.hockeyapp.android.utils.HttpURLConnectionBuilder;
21+
import net.hockeyapp.android.utils.HttpsURLConnectionBuilder;
2222
import net.hockeyapp.android.utils.Util;
2323

2424
import java.io.BufferedReader;
@@ -30,7 +30,7 @@
3030
import java.io.StringWriter;
3131
import java.lang.Thread.UncaughtExceptionHandler;
3232
import java.lang.ref.WeakReference;
33-
import java.net.HttpURLConnection;
33+
import javax.net.ssl.HttpsURLConnection;
3434
import java.util.Arrays;
3535
import java.util.Comparator;
3636
import java.util.HashMap;
@@ -408,7 +408,7 @@ public static synchronized void submitStackTraces(final WeakReference<Context> w
408408
private static void submitStackTrace(final WeakReference<Context> weakContext, String filename, CrashManagerListener listener, CrashMetaData crashMetaData) {
409409
String stacktrace = null;
410410
try {
411-
stacktrace = contentsOfFile(weakContext, filename, HttpURLConnectionBuilder.FORM_FIELD_LIMIT);
411+
stacktrace = contentsOfFile(weakContext, filename, HttpsURLConnectionBuilder.FORM_FIELD_LIMIT);
412412
} catch (Exception e) {
413413
HockeyLog.error("Failed to read crash data", e);
414414
}
@@ -422,7 +422,7 @@ private static void submitStackTrace(final WeakReference<Context> weakContext, S
422422
return;
423423
}
424424
Boolean successful = false;
425-
HttpURLConnection urlConnection = null;
425+
HttpsURLConnection urlConnection = null;
426426
try {
427427
// Transmit stack trace with POST request
428428
HockeyLog.debug("Transmitting crash data: \n" + stacktrace);
@@ -462,13 +462,13 @@ private static void submitStackTrace(final WeakReference<Context> weakContext, S
462462
parameters.put("sdk_version", BuildConfig.VERSION_NAME);
463463

464464
TrafficStats.setThreadStatsTag(Constants.THREAD_STATS_TAG);
465-
urlConnection = new HttpURLConnectionBuilder(getURLString())
465+
urlConnection = new HttpsURLConnectionBuilder(getURLString())
466466
.setRequestMethod("POST")
467467
.writeFormFields(parameters)
468468
.build();
469469

470470
int responseCode = urlConnection.getResponseCode();
471-
successful = (responseCode == HttpURLConnection.HTTP_ACCEPTED || responseCode == HttpURLConnection.HTTP_CREATED);
471+
successful = (responseCode == HttpsURLConnection.HTTP_ACCEPTED || responseCode == HttpsURLConnection.HTTP_CREATED);
472472
} catch (Exception e) {
473473
HockeyLog.error("Failed to transmit crash data", e);
474474
} finally {

hockeysdk/src/main/java/net/hockeyapp/android/PaintActivity.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ public class PaintActivity extends Activity {
4141
private PaintView mPaintView;
4242
private Uri mImageUri;
4343

44-
@SuppressLint("StaticFieldLeak")
4544
@Override
4645
public void onCreate(Bundle savedInstanceState) {
4746
super.onCreate(savedInstanceState);
@@ -53,7 +52,11 @@ public void onCreate(Bundle savedInstanceState) {
5352
return;
5453
}
5554
mImageUri = extras.getParcelable(EXTRA_IMAGE_URI);
55+
determineOrientation();
56+
}
5657

58+
@SuppressLint("StaticFieldLeak")
59+
private void determineOrientation() {
5760
AsyncTaskUtils.execute(new AsyncTask<Void, Object, Integer>() {
5861
@Override
5962
protected Integer doInBackground(Void... voids) {

hockeysdk/src/main/java/net/hockeyapp/android/metrics/Sender.java

+17-16
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@
1010
import net.hockeyapp.android.Constants;
1111
import net.hockeyapp.android.utils.AsyncTaskUtils;
1212
import net.hockeyapp.android.utils.HockeyLog;
13+
import net.hockeyapp.android.utils.Util;
1314

1415
import java.io.*;
1516
import java.lang.ref.WeakReference;
16-
import java.net.HttpURLConnection;
17+
import javax.net.ssl.HttpsURLConnection;;
1718
import java.net.URL;
1819
import java.util.Arrays;
1920
import java.util.List;
@@ -101,7 +102,7 @@ protected Void doInBackground(Void... params) {
101102
}
102103

103104
@SuppressLint("StaticFieldLeak")
104-
protected void triggerSendingForTesting(final HttpURLConnection connection, final File file, final String persistedData) {
105+
protected void triggerSendingForTesting(final HttpsURLConnection connection, final File file, final String persistedData) {
105106
if (requestCount() < MAX_REQUEST_COUNT) {
106107
mRequestCount.getAndIncrement();
107108

@@ -125,7 +126,7 @@ protected void sendAvailableFiles() {
125126
if (this.getPersistence() != null) {
126127
File fileToSend = this.getPersistence().nextAvailableFileInDirectory();
127128
String persistedData = loadData(fileToSend);
128-
HttpURLConnection connection = createConnection();
129+
HttpsURLConnection connection = createConnection();
129130

130131
if ((persistedData != null) && (connection != null)) {
131132
send(connection, fileToSend, persistedData);
@@ -143,7 +144,7 @@ protected void sendAvailableFiles() {
143144
* @param file
144145
* @param persistedData
145146
*/
146-
protected void send(HttpURLConnection connection, File file, String persistedData) {
147+
protected void send(HttpsURLConnection connection, File file, String persistedData) {
147148
// TODO Why does this get the file and persistedData reference, even though everything is in the connection?
148149
// TODO Looks like this will have to be rewritten for its own AsyncTask subclass.
149150
if (connection != null && file != null && persistedData != null) {
@@ -215,9 +216,9 @@ protected String loadData(File file) {
215216
* @return connection to the API endpoint
216217
*/
217218
@SuppressWarnings("ConstantConditions")
218-
protected HttpURLConnection createConnection() {
219+
protected HttpsURLConnection createConnection() {
219220
URL url;
220-
HttpURLConnection connection = null;
221+
HttpsURLConnection connection = null;
221222
try {
222223
if (getCustomServerURL() == null) {
223224
url = new URL(DEFAULT_ENDPOINT_URL);
@@ -230,8 +231,8 @@ protected HttpURLConnection createConnection() {
230231
}
231232
}
232233

233-
// TODO Replace with HttpUrlConnectionBuilder calls - expand this if necessary.
234-
connection = (HttpURLConnection) url.openConnection();
234+
// TODO Replace with HttpsUrlConnectionBuilder calls - expand this if necessary.
235+
connection = Util.openHttpsConnection(url);
235236
connection.setReadTimeout(DEFAULT_SENDER_READ_TIMEOUT);
236237
connection.setConnectTimeout(DEFAULT_SENDER_CONNECT_TIMEOUT);
237238
connection.setRequestMethod("POST");
@@ -253,7 +254,7 @@ protected HttpURLConnection createConnection() {
253254
* @param payload the payload which generated this response
254255
* @param fileToSend reference to the file we want to send
255256
*/
256-
protected void onResponse(HttpURLConnection connection, int responseCode, String payload, File
257+
protected void onResponse(HttpsURLConnection connection, int responseCode, String payload, File
257258
fileToSend) {
258259
// TODO Remove possible redundancy between response code and connection which also provides the same response code.
259260
// TODO This looks like a weird solution to keep the reference to the payload and the sent file.
@@ -301,9 +302,9 @@ protected boolean isRecoverableError(int responseCode) {
301302
429 -> TOO MANY REQUESTS
302303
503 -> SERVICE UNAVAILABLE
303304
511 -> NETWORK AUTHENTICATION REQUIRED
304-
All not available in HttpUrlConnection, thus listed here for reference.
305+
All not available in HttpsUrlConnection, thus listed here for reference.
305306
*/
306-
List<Integer> recoverableCodes = Arrays.asList(HttpURLConnection.HTTP_CLIENT_TIMEOUT, 429, HttpURLConnection.HTTP_INTERNAL_ERROR, 503, 511);
307+
List<Integer> recoverableCodes = Arrays.asList(HttpsURLConnection.HTTP_CLIENT_TIMEOUT, 429, HttpsURLConnection.HTTP_INTERNAL_ERROR, 503, 511);
307308
return recoverableCodes.contains(responseCode);
308309
}
309310

@@ -314,7 +315,7 @@ protected boolean isRecoverableError(int responseCode) {
314315
* @return True, if the response code means a successful operation, otherwise false.
315316
*/
316317
protected boolean isExpected(int responseCode) {
317-
return (HttpURLConnection.HTTP_OK <= responseCode && responseCode <= HttpURLConnection.HTTP_NOT_AUTHORITATIVE);
318+
return (HttpsURLConnection.HTTP_OK <= responseCode && responseCode <= HttpsURLConnection.HTTP_NOT_AUTHORITATIVE);
318319
}
319320

320321
/**
@@ -324,7 +325,7 @@ protected boolean isExpected(int responseCode) {
324325
* @param responseCode The response code from the connection.
325326
* @param builder A string builder for storing the response.
326327
*/
327-
protected void onUnexpected(HttpURLConnection connection, int responseCode, StringBuilder
328+
protected void onUnexpected(HttpsURLConnection connection, int responseCode, StringBuilder
328329
builder) {
329330
String message = String.format(Locale.ROOT, "Unexpected response code: %d", responseCode);
330331
builder.append(message);
@@ -344,7 +345,7 @@ protected void onUnexpected(HttpURLConnection connection, int responseCode, Stri
344345
* @param connection the connection
345346
* @param payload the payload of telemetry data
346347
*/
347-
private void logRequest(HttpURLConnection connection, String payload) throws IOException, SecurityException {
348+
private void logRequest(HttpsURLConnection connection, String payload) throws IOException, SecurityException {
348349
// TODO Rename this to reflect the true nature of this method: Sending the payload
349350
Writer writer = null;
350351
try {
@@ -373,7 +374,7 @@ private void logRequest(HttpURLConnection connection, String payload) throws IOE
373374
* @param connection the connection which will read the response
374375
* @param builder a string builder for storing the response
375376
*/
376-
protected void readResponse(HttpURLConnection connection, StringBuilder builder) {
377+
protected void readResponse(HttpsURLConnection connection, StringBuilder builder) {
377378
String result;
378379
StringBuilder buffer = new StringBuilder();
379380
InputStream inputStream = null;
@@ -423,7 +424,7 @@ protected void readResponse(HttpURLConnection connection, StringBuilder builder)
423424
* @throws java.io.IOException Exception thrown by GZIP (used in SDK 19+)
424425
*/
425426
@TargetApi(Build.VERSION_CODES.KITKAT)
426-
protected Writer getWriter(HttpURLConnection connection) throws IOException {
427+
protected Writer getWriter(HttpsURLConnection connection) throws IOException {
427428
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
428429
// GZIP if we are running SDK 19 or higher
429430
connection.addRequestProperty("Content-Encoding", "gzip");

hockeysdk/src/main/java/net/hockeyapp/android/tasks/AttachmentDownloader.java

+5-4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import net.hockeyapp.android.utils.AsyncTaskUtils;
1414
import net.hockeyapp.android.utils.HockeyLog;
1515
import net.hockeyapp.android.utils.ImageUtils;
16+
import net.hockeyapp.android.utils.Util;
1617
import net.hockeyapp.android.views.AttachmentView;
1718

1819
import java.io.BufferedInputStream;
@@ -21,7 +22,7 @@
2122
import java.io.IOException;
2223
import java.io.InputStream;
2324
import java.io.OutputStream;
24-
import java.net.HttpURLConnection;
25+
import javax.net.ssl.HttpsURLConnection;
2526
import java.net.URL;
2627
import java.net.URLConnection;
2728
import java.util.LinkedList;
@@ -227,9 +228,9 @@ private void loadImageThumbnail(File file) {
227228
private boolean downloadAttachment(String url, File file) {
228229
InputStream input = null;
229230
OutputStream output = null;
230-
HttpURLConnection connection = null;
231+
HttpsURLConnection connection = null;
231232
try {
232-
connection = (HttpURLConnection) createConnection(new URL(url));
233+
connection = (HttpsURLConnection) createConnection(new URL(url));
233234
TrafficStats.setThreadStatsTag(Constants.THREAD_STATS_TAG);
234235
connection.connect();
235236

@@ -278,7 +279,7 @@ private boolean downloadAttachment(String url, File file) {
278279
}
279280

280281
private URLConnection createConnection(URL url) throws IOException {
281-
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
282+
HttpsURLConnection connection = Util.openHttpsConnection(url);
282283
connection.addRequestProperty("User-Agent", Constants.SDK_USER_AGENT);
283284
connection.setInstanceFollowRedirects(true);
284285
return connection;

hockeysdk/src/main/java/net/hockeyapp/android/tasks/CheckUpdateTask.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ protected JSONArray doInBackground(Void... args) {
132132
}
133133

134134
protected URLConnection createConnection(URL url) throws IOException {
135-
URLConnection connection = url.openConnection();
135+
URLConnection connection = Util.openHttpsConnection(url);
136136
connection.addRequestProperty("User-Agent", Constants.SDK_USER_AGENT);
137137
return connection;
138138
}

hockeysdk/src/main/java/net/hockeyapp/android/tasks/ConnectionTask.java

+11-7
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import java.io.BufferedInputStream;
88
import java.io.IOException;
99
import java.io.InputStream;
10-
import java.net.HttpURLConnection;
10+
import javax.net.ssl.HttpsURLConnection;
1111

1212
/**
1313
* <h3>Description</h3>
@@ -17,11 +17,15 @@
1717
**/
1818
public abstract class ConnectionTask<Params, Progress, Result> extends AsyncTask<Params, Progress, Result> {
1919

20-
protected static String getStringFromConnection(HttpURLConnection connection) throws IOException {
21-
InputStream inputStream = new BufferedInputStream(connection.getInputStream());
22-
String jsonString = Util.convertStreamToString(inputStream);
23-
inputStream.close();
24-
25-
return jsonString;
20+
protected static String getStringFromConnection(HttpsURLConnection connection) throws IOException {
21+
InputStream inputStream = null;
22+
try {
23+
inputStream = new BufferedInputStream(connection.getInputStream());
24+
return Util.convertStreamToString(inputStream);
25+
} finally {
26+
if (inputStream != null) {
27+
inputStream.close();
28+
}
29+
}
2630
}
2731
}

0 commit comments

Comments
 (0)