Skip to content

Commit 8fb9ca1

Browse files
sdzhongSimon Zhong
and
Simon Zhong
authored
add customerType tag (#149)
Co-authored-by: Simon Zhong <simon@KX1QFM6F52.local>
1 parent bda28e9 commit 8fb9ca1

File tree

6 files changed

+5
-3
lines changed

6 files changed

+5
-3
lines changed

app-debug.apk

1.42 MB
Binary file not shown.

app-release.apk

-1.34 MB
Binary file not shown.

app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ android {
3838
applicationId "com.example.vu.android"
3939
minSdkVersion 21
4040
targetSdkVersion 29
41-
versionCode 46
42-
versionName "2.11.0"
41+
versionCode 47
42+
versionName "2.11.1"
4343

4444
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
4545
externalNativeBuild {

app/src/main/java/com/example/vu/android/MainActivity.java

-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ protected void onCreate(Bundle savedInstanceState) {
2929
// SENTRY Tag and Breadcrumb
3030
String activity = this.getClass().getSimpleName();
3131
Sentry.setTag("activity", activity);
32-
Sentry.setTag("customerType", "enterprise");
3332

3433
Breadcrumb breadcrumb = new Breadcrumb();
3534
breadcrumb.setMessage("Android activity was created");

app/src/main/java/com/example/vu/android/MyApplication.java

+3
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,9 @@ public void onCreate() {
111111
});
112112
});
113113

114+
String[] allCustomerTypes = {"medium-plan", "large-plan", "small-plan", "enterprise"};
115+
String customerType = allCustomerTypes[(int) (Math.random() * 4)];
116+
Sentry.setTag("customerType", customerType);
114117
Sentry.setTag("se", SE);
115118

116119
// Set User info on Sentry event using a random email

release/app-release.apk

-1.34 MB
Binary file not shown.

0 commit comments

Comments
 (0)