Skip to content

Commit

Permalink
use simple class name for analytics
Browse files Browse the repository at this point in the history
  • Loading branch information
shalzz committed Apr 24, 2018
1 parent 792f14a commit cd57e54
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ public View onCreateView( @NonNull LayoutInflater inflater, ViewGroup container,
@Override
public void onStart() {
super.onStart();
mTracker.setCurrentScreen(mActivity, getClass().getSimpleName(), getClass().getName());
mTracker.setCurrentScreen(mActivity, getClass().getSimpleName(), getClass().getSimpleName());
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public void onCreatePreferences(Bundle bundle, String s) {
@Override
public void onStart() {
super.onStart();
mTracker.setCurrentScreen(mainActivity, getClass().getSimpleName(), getClass().getName());
mTracker.setCurrentScreen(mainActivity, getClass().getSimpleName(), getClass().getSimpleName());
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public void onCreatePreferences(Bundle bundle, String s) {
@Override
public void onStart() {
super.onStart();
mTracker.setCurrentScreen(mActivity, getClass().getSimpleName(), getClass().getName());
mTracker.setCurrentScreen(mActivity, getClass().getSimpleName(), getClass().getSimpleName());
}

public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public class TimeTablePagerFragment extends Fragment implements TimeTableMvpView
@Override
public void onStart() {
super.onStart();
mTracker.setCurrentScreen(mActivity, getClass().getSimpleName(), getClass().getName());
mTracker.setCurrentScreen(mActivity, getClass().getSimpleName(), getClass().getSimpleName());
}

@Override
Expand Down

0 comments on commit cd57e54

Please sign in to comment.