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

Commit c56d057

Browse files
author
Benjamin Scholtysik (Reimold)
authored
Merge pull request #346 from bitstadium/release/5.1.0
Version 5.1.0
2 parents db4c38a + 80ffb93 commit c56d057

File tree

10 files changed

+98
-24
lines changed

10 files changed

+98
-24
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![Build Status](https://www.bitrise.io/app/562949a18404dad6/status.svg?token=IZE4w-D2xii7QjqvJVc51A&branch=master)](https://www.bitrise.io/app/562949a18404dad6)
22
[![Slack Status](https://slack.hockeyapp.net/badge.svg)](https://slack.hockeyapp.net)
33

4-
## Version 5.0.4
4+
## Version 5.1.0
55

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

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

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

29-
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.0.4), [java doc](https://www.hockeyapp.net/help/sdk/android/5.0.4/index.html) as well as our [troubleshooting section](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk#troubleshooting).
29+
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.0), [java doc](https://www.hockeyapp.net/help/sdk/android/5.1.0/index.html) as well as our [troubleshooting section](https://support.hockeyapp.net/kb/client-integration-android/hockeyapp-for-android-sdk#troubleshooting).
3030

3131
## 3. Contributing
3232

build.gradle

+4-4
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.0'
9+
classpath 'com.android.tools.build:gradle:3.0.1'
1010
classpath 'com.novoda:bintray-release:0.5.0'
1111
}
1212
}
@@ -37,13 +37,13 @@ allprojects {
3737

3838
ext {
3939
ARTIFACT_ID = 'HockeySDK'
40-
VERSION_NAME = '5.0.4'
41-
VERSION_CODE = 18
40+
VERSION_NAME = '5.1.0'
41+
VERSION_CODE = 19
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
4545
GROUP_NAME = 'net.hockeyapp.android'
46-
COMPILE_SDK = 26
46+
COMPILE_SDK = 27
4747
IS_UPLOADING = project.getGradle().startParameter.taskNames.any{it.contains('bintrayUpload')}
4848
DESCRIPTION = 'HockeySDK-Android implements support for using HockeyApp in your Android application. The following features are currently supported:\n' +
4949
'\n' +

hockeysdk/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ android {
66

77
defaultConfig {
88
minSdkVersion 15
9-
targetSdkVersion 26
9+
targetSdkVersion 27
1010
versionCode VERSION_CODE
1111
versionName VERSION_NAME
1212
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
@@ -18,7 +18,7 @@ android {
1818
}
1919
}
2020
lintOptions {
21-
disable 'GoogleAppIndexingWarning'
21+
disable 'GoogleAppIndexingWarning','RtlEnabled'
2222
textReport true
2323
}
2424
}

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

+5
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,11 @@ public void testNextFileRequestReturnsUnreservedFile() {
8787
servedFiles.add(mockFile1);
8888
sut.mServedFiles = servedFiles;
8989

90+
// Test hasFilesAvailable
91+
assertTrue(sut.hasFilesAvailable());
92+
assertTrue(!sut.mServedFiles.contains(mockFile2));
93+
assertTrue(sut.hasFilesAvailable());
94+
9095
// Test one unreserved file left
9196
File result = sut.nextAvailableFileInDirectory();
9297
assertEquals(mockFile2, result);

hockeysdk/src/main/AndroidManifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="18" />
99
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
1010

11-
<application android:supportsRtl="true">
11+
<application>
1212

1313
<activity android:name=".UpdateActivity" />
1414
<activity android:name=".FeedbackActivity" android:windowSoftInputMode="adjustResize|stateVisible" />

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

+16-5
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,11 @@ public class FeedbackActivity extends Activity implements OnClickListener, View.
9999
*/
100100
public static final String EXTRA_INITIAL_ATTACHMENTS = "initialAttachments";
101101

102+
/**
103+
* Extra for user id to be send with the feedback message.
104+
*/
105+
public static final String EXTRA_USER_ID = "userId";
106+
102107
/**
103108
* Number of attachments allowed per message.
104109
**/
@@ -126,6 +131,11 @@ public class FeedbackActivity extends Activity implements OnClickListener, View.
126131
*/
127132
private String mInitialUserSubject;
128133

134+
/**
135+
* User id to be send with the feedback message
136+
*/
137+
private String mUserId;
138+
129139
/**
130140
* Initial attachment uris
131141
*/
@@ -213,6 +223,7 @@ public void onCreate(Bundle savedInstanceState) {
213223
mInitialUserName = extras.getString(EXTRA_INITIAL_USER_NAME);
214224
mInitialUserEmail = extras.getString(EXTRA_INITIAL_USER_EMAIL);
215225
mInitialUserSubject = extras.getString(EXTRA_INITIAL_USER_SUBJECT);
226+
mUserId = extras.getString(EXTRA_USER_ID);
216227

217228
Parcelable[] initialAttachmentsArray = extras.getParcelableArray(EXTRA_INITIAL_ATTACHMENTS);
218229
if (initialAttachmentsArray != null) {
@@ -354,7 +365,7 @@ public void onClick(View v) {
354365
mInSendFeedback = true;
355366
configureFeedbackView(false);
356367
} else if (viewId == R.id.button_refresh) {
357-
sendFetchFeedback(mUrl, null, null, null, null, null, mToken, mFeedbackHandler, true);
368+
sendFetchFeedback(mUrl, null, null, null, null, null, null, mToken, mFeedbackHandler, true);
358369
}
359370
}
360371

@@ -601,7 +612,7 @@ private void configureAppropriateView() {
601612
} else {
602613
/** If Feedback Token is NOT NULL, show the Add Response Button and fetch the feedback messages */
603614
configureFeedbackView(true);
604-
sendFetchFeedback(mUrl, null, null, null, null, null, mToken, mFeedbackHandler, true);
615+
sendFetchFeedback(mUrl, null, null, null, null, null, null, mToken, mFeedbackHandler, true);
605616
}
606617
}
607618

@@ -764,7 +775,7 @@ protected Object doInBackground(Void... voids) {
764775
List<Uri> attachmentUris = mAttachmentListView.getAttachments();
765776

766777
/** Start the Send Feedback {@link AsyncTask} */
767-
sendFetchFeedback(mUrl, name, email, subject, text, attachmentUris, token, mFeedbackHandler, false);
778+
sendFetchFeedback(mUrl, name, email, subject, text, mUserId, attachmentUris, token, mFeedbackHandler, false);
768779

769780
hideKeyboard();
770781
}
@@ -795,8 +806,8 @@ public void run() {
795806
* @param feedbackHandler Handler to handle the response
796807
* @param isFetchMessages Set true to fetch messages, false to send one
797808
*/
798-
private void sendFetchFeedback(String url, String name, String email, String subject, String text, List<Uri> attachmentUris, String token, Handler feedbackHandler, boolean isFetchMessages) {
799-
mSendFeedbackTask = new SendFeedbackTask(mContext, url, name, email, subject, text, attachmentUris, token, feedbackHandler, isFetchMessages);
809+
private void sendFetchFeedback(String url, String name, String email, String subject, String text, String userId, List<Uri> attachmentUris, String token, Handler feedbackHandler, boolean isFetchMessages) {
810+
mSendFeedbackTask = new SendFeedbackTask(mContext, url, name, email, subject, text, userId, attachmentUris, token, feedbackHandler, isFetchMessages);
800811
AsyncTaskUtils.execute(mSendFeedbackTask);
801812
}
802813

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

+28-7
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@
1313
import android.net.Uri;
1414
import android.os.AsyncTask;
1515
import android.os.Bundle;
16-
import android.os.Handler;
17-
import android.os.Message;
1816
import android.view.View;
1917
import android.widget.Toast;
2018

@@ -108,6 +106,8 @@ public class FeedbackManager {
108106

109107
private static String userEmail;
110108

109+
private static String userId;
110+
111111
/**
112112
* Last listener instance.
113113
*/
@@ -201,6 +201,10 @@ public static void showFeedbackActivity(Context context, Uri... attachments) {
201201
*/
202202
@SuppressLint("StaticFieldLeak")
203203
public static void showFeedbackActivity(final Context context, final Bundle extras, final Uri... attachments) {
204+
if (urlString == null || identifier == null) {
205+
HockeyLog.error("FeedbackManager hasn't been registered.");
206+
return;
207+
}
204208
if (context != null) {
205209
final Class<?> activityClass = lastListener != null ? lastListener.getFeedbackActivityClass() : null;
206210
final boolean forceNewThread = lastListener != null && lastListener.shouldCreateNewFeedbackThread();
@@ -214,7 +218,7 @@ protected Intent doInBackground(Void... voids) {
214218
}
215219
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
216220
intent.setClass(context, activityClass != null ? activityClass : FeedbackActivity.class);
217-
intent.putExtra(FeedbackActivity.EXTRA_URL, getURLString(context));
221+
intent.putExtra(FeedbackActivity.EXTRA_URL, getURLString());
218222
String token = !forceNewThread ? PrefsUtil.getInstance().getFeedbackTokenFromPrefs(context) : null;
219223
intent.putExtra(FeedbackActivity.EXTRA_TOKEN, token);
220224
intent.putExtra(FeedbackActivity.EXTRA_FORCE_NEW_THREAD, forceNewThread);
@@ -237,6 +241,7 @@ protected Intent doInBackground(Void... voids) {
237241
intent.putExtra(FeedbackActivity.EXTRA_INITIAL_USER_EMAIL, userEmail);
238242
intent.putExtra(FeedbackActivity.EXTRA_INITIAL_USER_SUBJECT, userSubject);
239243
intent.putExtra(FeedbackActivity.EXTRA_INITIAL_ATTACHMENTS, getInitialAttachments(attachments));
244+
intent.putExtra(FeedbackActivity.EXTRA_USER_ID, FeedbackManager.userId);
240245
return intent;
241246
}
242247

@@ -285,6 +290,10 @@ public boolean accept(File dir, String name) {
285290
*/
286291
@SuppressLint("StaticFieldLeak")
287292
public static void checkForAnswersAndNotify(final Context context) {
293+
if (urlString == null || identifier == null) {
294+
HockeyLog.error("FeedbackManager hasn't been registered.");
295+
return;
296+
}
288297
String token = PrefsUtil.getInstance().getFeedbackTokenFromPrefs(context);
289298
if (token == null) {
290299
return;
@@ -293,7 +302,7 @@ public static void checkForAnswersAndNotify(final Context context) {
293302
int lastMessageId = context.getSharedPreferences(ParseFeedbackTask.PREFERENCES_NAME, 0)
294303
.getInt(ParseFeedbackTask.ID_LAST_MESSAGE_SEND, -1);
295304

296-
SendFeedbackTask sendFeedbackTask = new SendFeedbackTask(context, getURLString(context), null, null, null, null, null, token, null, true) {
305+
SendFeedbackTask sendFeedbackTask = new SendFeedbackTask(context, getURLString(), null, null, null, null, null, null, token, null, true) {
297306

298307
@Override
299308
protected void onPostExecute(HashMap<String, String> result) {
@@ -302,7 +311,7 @@ protected void onPostExecute(HashMap<String, String> result) {
302311
String responseString = result.get("response");
303312
if (responseString != null) {
304313
ParseFeedbackTask task = new ParseFeedbackTask(context, responseString, null, "fetch");
305-
task.setUrlString(getURLString(context));
314+
task.setUrlString(getURLString());
306315
AsyncTaskUtils.execute(task);
307316
}
308317
}
@@ -324,10 +333,13 @@ public static FeedbackManagerListener getLastListener() {
324333
/**
325334
* Populates the URL String with the appIdentifier
326335
*
327-
* @param context {@link Context} object
328336
* @return URL String with the appIdentifier
329337
*/
330-
private static String getURLString(Context context) {
338+
private static String getURLString() {
339+
if (urlString == null || identifier == null) {
340+
HockeyLog.error("FeedbackManager hasn't been registered.");
341+
return null;
342+
}
331343
return urlString + "api/2/apps/" + identifier + "/feedback/";
332344
}
333345

@@ -385,6 +397,15 @@ public static void setUserEmail(String userEmail) {
385397
FeedbackManager.userEmail = userEmail;
386398
}
387399

400+
/**
401+
* Sets the user id to send as additional data
402+
*
403+
* @param userId user id
404+
*/
405+
public static void setUserId(String userId) {
406+
FeedbackManager.userId = userId;
407+
}
408+
388409
/**
389410
* Stores a reference to the given activity to be used for taking a screenshot of it.
390411
* Reference is cleared only when method unsetCurrentActivityForScreenshot is called.

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

+26
Original file line numberDiff line numberDiff line change
@@ -433,14 +433,40 @@ private static Data<Domain> createData(TelemetryData telemetryData) {
433433
return data;
434434
}
435435

436+
/**
437+
* This method allows to track an event that happened in your app.
438+
* Remember to choose meaningful event names to have the best experience when diagnosing your app
439+
* in the HockeyApp web portal.
440+
*
441+
* @param eventName The event's name as a string.
442+
*/
443+
@SuppressWarnings({"SameParameterValue", "WeakerAccess"})
436444
public static void trackEvent(final String eventName) {
437445
trackEvent(eventName, null);
438446
}
439447

448+
/**
449+
* This method allows to track an event that happened in your app.
450+
* Remember to choose meaningful event names to have the best experience when diagnosing your app
451+
* in the web portal.
452+
*
453+
* @param eventName the name of the event, which should be tracked.
454+
* @param properties key value pairs with additional info about the event.
455+
*/
456+
@SuppressWarnings({"SameParameterValue", "WeakerAccess"})
440457
public static void trackEvent(final String eventName, final Map<String, String> properties) {
441458
trackEvent(eventName, properties, null);
442459
}
443460

461+
/**
462+
* This method allows to track an event that happened in your app.
463+
* Remember to choose meaningful event names to have the best experience when diagnosing your app
464+
* in the web portal.
465+
*
466+
* @param eventName the name of the event, which should be tracked.
467+
* @param properties key value pairs with additional info about the event.
468+
* @param measurements key value pairs, which contain custom metrics.
469+
*/
444470
@SuppressLint("StaticFieldLeak")
445471
public static void trackEvent(final String eventName, final Map<String, String> properties, final Map<String, Double> measurements) {
446472
if (TextUtils.isEmpty(eventName)) {

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

+5-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,11 @@ String load(File file) {
193193
*/
194194
@SuppressWarnings("WeakerAccess")
195195
protected boolean hasFilesAvailable() {
196-
return nextAvailableFileInDirectory() != null;
196+
File file = nextAvailableFileInDirectory();
197+
198+
// Don't change availability on checking
199+
makeAvailable(file);
200+
return file != null;
197201
}
198202

199203
/**

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

+9-2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ public class SendFeedbackTask extends ConnectionTask<Void, Void, HashMap<String,
4747
private String mEmail;
4848
private String mSubject;
4949
private String mText;
50+
private String mUserId;
5051
private List<Uri> mAttachmentUris;
5152
private String mToken;
5253
private boolean mIsFetchMessages;
@@ -76,7 +77,7 @@ public class SendFeedbackTask extends ConnectionTask<Void, Void, HashMap<String,
7677
* feedback message
7778
*/
7879
public SendFeedbackTask(Context context, String urlString, String name, String email,
79-
String subject,String text, List<Uri> attachmentUris, String token,
80+
String subject,String text, String userId, List<Uri> attachmentUris, String token,
8081
Handler handler, boolean isFetchMessages) {
8182

8283
this.mContext = context;
@@ -85,6 +86,7 @@ public SendFeedbackTask(Context context, String urlString, String name, String e
8586
this.mEmail = email;
8687
this.mSubject = subject;
8788
this.mText = text;
89+
this.mUserId = userId;
8890
this.mAttachmentUris = attachmentUris;
8991
this.mToken = token;
9092
this.mHandler = handler;
@@ -242,6 +244,9 @@ private HashMap<String, String> doPostPut() {
242244
parameters.put("oem", Constants.PHONE_MANUFACTURER);
243245
parameters.put("model", Constants.PHONE_MODEL);
244246
parameters.put("sdk_version", Constants.SDK_VERSION);
247+
if (mUserId != null) {
248+
parameters.put("user_string", mUserId);
249+
}
245250

246251
if (mToken != null) {
247252
mUrlString += mToken + "/";
@@ -290,7 +295,9 @@ private HashMap<String, String> doPostPutWithAttachments() {
290295
parameters.put("oem", Constants.PHONE_MANUFACTURER);
291296
parameters.put("model", Constants.PHONE_MODEL);
292297
parameters.put("sdk_version", Constants.SDK_VERSION);
293-
298+
if (mUserId != null) {
299+
parameters.put("user_string", mUserId);
300+
}
294301
if (mToken != null) {
295302
mUrlString += mToken + "/";
296303
}

0 commit comments

Comments
 (0)