CrackMe.apk

Download file
    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent">
    <include layout="@layout/mtrl_calendar_month_navigation"/>
    <FrameLayout android:id="@+id/mtrl_calendar_selection_frame" android:layout_width="match_parent" android:layout_height="match_parent">
        <androidx.recyclerview.widget.RecyclerView android:layout_gravity="center_horizontal" android:id="@+id/mtrl_calendar_year_selector_frame" android:scrollbars="none" android:layout_width="wrap_content" android:layout_height="match_parent"/>
        <LinearLayout android:orientation="vertical" android:id="@+id/mtrl_calendar_day_selector_frame" android:layout_width="wrap_content" android:layout_height="match_parent">
            <include layout="@layout/mtrl_calendar_days_of_week"/>
            <include layout="@layout/mtrl_calendar_months"/>
        </LinearLayout>
    </FrameLayout>
</LinearLayout>
    
Download file