Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
* dev:
  update whatsnew
  use simple class name for analytics
  fix crash on pre-lollipop
  • Loading branch information
shalzz committed Apr 24, 2018
2 parents f43cd43 + ede5325 commit cc98d91
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 8 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 @@ -27,7 +27,6 @@
import com.bugsnag.android.Bugsnag;
import com.bugsnag.android.Severity;
import com.google.firebase.analytics.FirebaseAnalytics;
import com.shalzz.attendance.BuildConfig;
import com.shalzz.attendance.R;
import com.shalzz.attendance.data.local.PreferencesHelper;
import com.shalzz.attendance.ui.base.BaseActivity;
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
3 changes: 1 addition & 2 deletions app/src/main/play/en-US/whatsnew
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
• Introduced Pro Mode which unlocks additional features.
• Bug fixes and improvements
• fix crash on pre-lollipop devices
2 changes: 1 addition & 1 deletion app/src/main/res/drawable/launch_screen.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
android:height="64dp"
android:gravity="top">
<shape android:shape="rectangle">
<solid android:color="?colorPrimary"/>
<solid android:color="@color/primary"/>
</shape>
</item>

Expand Down

0 comments on commit cc98d91

Please sign in to comment.