Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8c43f062 authored by Aurimas Liutikas's avatar Aurimas Liutikas
Browse files

Move ExactCalculator to androidx.

Bug: 76692459
Test: make -j ExactCalculator and run on emulator
Change-Id: I6d52a233696d41d43fdaabf6863f359c79e4b4f7
parent 53b90b36
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -31,8 +31,8 @@ LOCAL_SRC_FILES := $(call all-java-files-under, src)
LOCAL_PROGUARD_FLAG_FILES := proguard.flags

LOCAL_STATIC_JAVA_LIBRARIES := cr
LOCAL_STATIC_ANDROID_LIBRARIES += android-support-v4
LOCAL_STATIC_ANDROID_LIBRARIES += android-support-v7-gridlayout
LOCAL_STATIC_ANDROID_LIBRARIES += android-support-v7-recyclerview
LOCAL_STATIC_ANDROID_LIBRARIES += androidx.legacy_legacy-support-v4
LOCAL_STATIC_ANDROID_LIBRARIES += androidx.gridlayout_gridlayout
LOCAL_STATIC_ANDROID_LIBRARIES += androidx.recyclerview_recyclerview

include $(BUILD_PACKAGE)
+1 −1
Original line number Diff line number Diff line
@@ -35,7 +35,7 @@
        android:theme="@android:style/ThemeOverlay.Material.Dark.ActionBar"
        android:title="@string/title_history" />

    <android.support.v7.widget.RecyclerView
    <androidx.recyclerview.widget.RecyclerView
        android:id="@+id/history_recycler_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
+2 −2
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
  limitations under the License.
  -->

<android.support.v7.widget.GridLayout
<androidx.gridlayout.widget.GridLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/pad_advanced"
@@ -205,4 +205,4 @@
        app:layout_row="4"
        app:layout_column="2" />

</android.support.v7.widget.GridLayout>
</androidx.gridlayout.widget.GridLayout>
+2 −2
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
  limitations under the License.
  -->

<android.support.v7.widget.GridLayout
<androidx.gridlayout.widget.GridLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/pad_advanced"
@@ -205,4 +205,4 @@
        app:layout_row="3"
        app:layout_column="3" />

</android.support.v7.widget.GridLayout>
</androidx.gridlayout.widget.GridLayout>
+2 −2
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
  limitations under the License.
  -->

<android.support.v7.widget.GridLayout
<androidx.gridlayout.widget.GridLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/pad_advanced"
@@ -205,4 +205,4 @@
        app:layout_row="2"
        app:layout_column="4" />

</android.support.v7.widget.GridLayout>
</androidx.gridlayout.widget.GridLayout>
Loading