From f71429f667a2e824df07a9c42391d2b59624f0d3 Mon Sep 17 00:00:00 2001 From: Isira Seneviratne Date: Mon, 31 Aug 2020 07:32:15 +0530 Subject: [PATCH] Remove multidex library. --- app/build.gradle | 2 -- app/src/main/kotlin/com/simplemobiletools/gallery/pro/App.kt | 4 ++-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 228177d5b..fbbab2665 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -19,7 +19,6 @@ android { targetSdkVersion 29 versionCode 314 versionName "6.15.2" - multiDexEnabled true setProperty("archivesBaseName", "gallery-$versionCode") vectorDrawables.useSupportLibrary = true } @@ -80,7 +79,6 @@ android { dependencies { implementation 'com.simplemobiletools:commons:5.29.20' implementation 'com.theartofdev.edmodo:android-image-cropper:2.8.0' - implementation 'androidx.multidex:multidex:2.0.1' implementation 'it.sephiroth.android.exif:library:1.0.1' implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.19' implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta7' diff --git a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/App.kt b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/App.kt index 670ba17a4..07e9a4097 100644 --- a/app/src/main/kotlin/com/simplemobiletools/gallery/pro/App.kt +++ b/app/src/main/kotlin/com/simplemobiletools/gallery/pro/App.kt @@ -1,10 +1,10 @@ package com.simplemobiletools.gallery.pro -import androidx.multidex.MultiDexApplication +import android.app.Application import com.github.ajalt.reprint.core.Reprint import com.simplemobiletools.commons.extensions.checkUseEnglish -class App : MultiDexApplication() { +class App : Application() { override fun onCreate() { super.onCreate() checkUseEnglish()