Skip to content
This repository has been archived by the owner on Feb 20, 2024. It is now read-only.

Commit

Permalink
Merge pull request #88 from vikulin/master
Browse files Browse the repository at this point in the history
removed unnecessary multidex
  • Loading branch information
vikulin authored Dec 21, 2022
2 parents 91ddb4f + aac4459 commit d4f8af5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
applicationId "io.github.chronosx88.yggdrasil"
minSdkVersion 15
targetSdkVersion 33
versionCode 42
versionName "2.1.6"
versionCode 43
versionName "2.1.7"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
setProperty("archivesBaseName", project.getParent().name+"-"+versionName)

Expand Down Expand Up @@ -88,7 +88,6 @@ dependencies {
implementation 'com.hbb20:ccp:2.4.0'
implementation 'com.vincentbrison.openlibraries.android:dualcache:3.1.1'
implementation 'com.vincentbrison.openlibraries.android:dualcache-jsonserializer:3.1.1'
implementation 'com.android.support:multidex:1.0.3'
implementation 'androidx.work:work-runtime-ktx:2.7.1'

testImplementation 'junit:junit:4.13.2'
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/org/yggdrasil/app/crispa/YggApplication.kt
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
package org.yggdrasil.app.crispa

import android.app.Application
import android.content.Context
import androidx.multidex.MultiDexApplication
import org.acra.config.dialog
import org.acra.config.httpSender
import org.acra.data.StringFormat
import org.acra.ktx.initAcra
import org.acra.sender.HttpSender

class YggApplication : MultiDexApplication() {
class YggApplication : Application() {
override fun attachBaseContext(base: Context) {
super.attachBaseContext(base)

Expand Down

0 comments on commit d4f8af5

Please sign in to comment.