summaryrefslogtreecommitdiffstats
path: root/mobile/android/examples/messaging_example/app/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'mobile/android/examples/messaging_example/app/build.gradle')
-rw-r--r--mobile/android/examples/messaging_example/app/build.gradle10
1 files changed, 4 insertions, 6 deletions
diff --git a/mobile/android/examples/messaging_example/app/build.gradle b/mobile/android/examples/messaging_example/app/build.gradle
index 1fbc89b457..52934be74f 100644
--- a/mobile/android/examples/messaging_example/app/build.gradle
+++ b/mobile/android/examples/messaging_example/app/build.gradle
@@ -18,7 +18,6 @@ android {
minSdkVersion project.ext.minSdkVersion
versionCode 1
versionName "1.0"
- multiDexEnabled true
}
buildTypes {
release {
@@ -45,11 +44,10 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation "androidx.annotation:annotation:1.6.0"
- implementation "androidx.appcompat:appcompat:1.6.1"
- implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
- implementation 'androidx.multidex:multidex:2.0.1'
- testImplementation 'junit:junit:4.13.2'
+ implementation ComponentsDependencies.androidx_annotation
+ implementation ComponentsDependencies.androidx_appcompat
+ implementation ComponentsDependencies.androidx_constraintlayout
+ testImplementation ComponentsDependencies.testing_junit
// Replace this with implementation "org.mozilla.geckoview:geckoview-${geckoviewChannel}:${geckoviewVersion}"
implementation project(path: ':geckoview')
}