Skip to content

Commit

Permalink
Enable multidex
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelm committed Aug 6, 2023
1 parent 3f5a346 commit 867b722
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions postixdroid/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ android {
targetSdkVersion 33
versionCode 4
versionName "camp23.0"
multiDexEnabled true
}

lintOptions {
Expand Down Expand Up @@ -45,6 +46,7 @@ android {

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:multidex:1.0.3'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.9.0'
implementation 'me.dm7.barcodescanner:zxing:1.9.8'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

import android.app.Application;

public class Postixdroid extends Application {
import androidx.multidex.MultiDexApplication;

public class Postixdroid extends MultiDexApplication {
/*
* It is not a security problem that the keystore password is hardcoded in plain text.
* It would be only relevant in a case in which the attack would have either root access on the
Expand Down

0 comments on commit 867b722

Please sign in to comment.