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

Commit f0e7d4f7 authored by Fahim Salam Chowdhury's avatar Fahim Salam Chowdhury 👽
Browse files

Remove flaovors

parent f9a9ba79
Loading
Loading
Loading
Loading
+0 −24
Original line number Diff line number Diff line
@@ -39,30 +39,6 @@ android {
        }
    }


    flavorDimensions "version"

    productFlavors {
        fdroid {
            dimension "version"
        }
        dev {
            dimension "version"
            applicationIdSuffix ".dev"
        }
        play {
            dimension "version"
        }
        pfungstadt {
            dimension "version"
            applicationIdSuffix ".pfungstadt"
        }
        mdm {
            dimension "version"
            applicationIdSuffix ".mdm"
        }
    }

    testOptions {
        unitTests {
            includeAndroidResources true
+0 −29
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="108dp"
    android:height="108dp"
    android:viewportWidth="66.666664"
    android:viewportHeight="66.666664">
    <group
        android:translateX="17.333334"
        android:translateY="17.333334">
        <path
            android:fillColor="#fff"
            android:pathData="m24.484 3.5156c-1.0237 0-2.0471 0.38887-2.8281 1.1699l5.6582 5.6582c1.5621-1.5621 1.5621-4.0961 0-5.6582-0.78105-0.78105-1.8064-1.1699-2.8301-1.1699zm-4.2422 2.584-12.02 12.021 5.6562 5.6562 12.021-12.02-5.6582-5.6582zm-13.436 13.436-2.1211 7.7793 7.7793-2.1211-5.6582-5.6582z" />
    </group>
    <group
        android:scaleX=".20"
        android:scaleY=".23"
        android:translateX="33"
        android:translateY="38">
        <path
            android:fillColor="#ffffff"
            android:pathData="M11.908125 40h11.4c4.44 0 7.24 -1.04 9.2 -3.4 2.32 -2.72 3.56 -6.68 3.56 -11.2 0 -4.48 -1.24 -8.44 -3.56 -11.2 -1.96 -2.36 -4.72 -3.36 -9.2 -3.36h-11.4zm6 -5V15.84h5.4c4.52 0 6.76 3.16 6.76 9.6 0 6.4 -2.24 9.56 -6.76 9.56z" />
        <path
            android:fillColor="#ffffff"
            android:pathData="M46.894375 27.44h13.96v-5h-13.96v-6.6h15.08v-5h-21.08V40h21.8v-5h-15.8z" />
        <path
            android:fillColor="#ffffff"
            android:pathData="M80.333125 40l10 -29.16h-6.04l-6.36 21.96 -6.48 -21.96h-6.04l9.84 29.16z" />
    </group>
</vector>

app/src/dev/res/xml/shortcuts.xml

deleted100644 → 0
+0 −17
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools">
    <shortcut
        android:enabled="true"
        android:icon="@drawable/ic_add_blue_24dp"
        android:shortcutId="it.niedermann.owncloud.notes"
        android:shortcutLongLabel="@string/shortcut_create_long"
        android:shortcutShortLabel="@string/action_create"
        tools:targetApi="n_mr1">
        <intent
            android:action="android.intent.action.CREATE_DOCUMENT"
            android:targetClass="it.niedermann.owncloud.notes.edit.EditNoteActivity"
            android:targetPackage="it.niedermann.owncloud.notes.dev" />
        <categories android:name="android.shortcut.conversation" />
    </shortcut>
</shortcuts>
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -38,7 +38,7 @@ public class ExceptionActivity extends AppCompatActivity {
        }

        final var adapter = new TipsAdapter(this::startActivity);
        final String debugInfos = ExceptionUtil.INSTANCE.getDebugInfos(this, throwable, BuildConfig.FLAVOR);
        final String debugInfos = ExceptionUtil.INSTANCE.getDebugInfos(this, throwable, "PROD");

        binding.tips.setAdapter(adapter);
        binding.tips.setNestedScrollingEnabled(false);
+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@ public class ExceptionDialogFragment extends AppCompatDialogFragment {

        final var adapter = new TipsAdapter((actionIntent) -> requireActivity().startActivity(actionIntent));

        final String debugInfos = ExceptionUtil.INSTANCE.getDebugInfos(requireContext(), throwables, BuildConfig.FLAVOR);
        final String debugInfos = ExceptionUtil.INSTANCE.getDebugInfos(requireContext(), throwables, "PROD");

        binding.tips.setAdapter(adapter);
        binding.stacktrace.setText(debugInfos);