Skip to content

Commit 3c64162

Browse files
authored
chore(android): make androidx.exifinterface version configurable (#3236)
1 parent f6ad87c commit 3c64162

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

android-template/variables.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ ext {
77
androidxMaterialVersion = '1.1.0-rc02'
88
androidxBrowserVersion = '1.2.0'
99
androidxLocalbroadcastmanagerVersion = '1.0.0'
10+
androidxExifInterfaceVersion = '1.2.0'
1011
firebaseMessagingVersion = '20.1.2'
1112
playServicesLocationVersion = '17.0.0'
1213
junitVersion = '4.12'

android/capacitor/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ ext {
44
androidxMaterialVersion = project.hasProperty('androidxMaterialVersion') ? rootProject.ext.androidxMaterialVersion : '1.1.0-rc02'
55
androidxBrowserVersion = project.hasProperty('androidxBrowserVersion') ? rootProject.ext.androidxBrowserVersion : '1.2.0'
66
androidxLocalbroadcastmanagerVersion = project.hasProperty('androidxLocalbroadcastmanagerVersion') ? rootProject.ext.androidxLocalbroadcastmanagerVersion : '1.0.0'
7+
androidxExifInterfaceVersion = project.hasProperty('androidxExifInterfaceVersion') ? rootProject.ext.androidxExifInterfaceVersion : '1.2.0'
78
firebaseMessagingVersion = project.hasProperty('firebaseMessagingVersion') ? rootProject.ext.firebaseMessagingVersion : '20.1.2'
89
playServicesLocationVersion = project.hasProperty('playServicesLocationVersion') ? rootProject.ext.playServicesLocationVersion : '17.0.0'
910
junitVersion = project.hasProperty('junitVersion') ? rootProject.ext.junitVersion : '4.12'
@@ -64,13 +65,13 @@ dependencies {
6465
implementation "com.google.android.material:material:$androidxMaterialVersion"
6566
implementation "androidx.browser:browser:$androidxBrowserVersion"
6667
implementation "androidx.localbroadcastmanager:localbroadcastmanager:$androidxLocalbroadcastmanagerVersion"
68+
implementation "androidx.exifinterface:exifinterface:$androidxExifInterfaceVersion"
6769
implementation "com.google.firebase:firebase-messaging:$firebaseMessagingVersion"
6870
implementation "com.google.android.gms:play-services-location:$playServicesLocationVersion"
6971
testImplementation "junit:junit:$junitVersion"
7072
androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
7173
androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
7274
implementation "org.apache.cordova:framework:$cordovaAndroidVersion"
73-
implementation 'androidx.exifinterface:exifinterface:1.2.0'
7475
testImplementation 'org.json:json:20140107'
7576
testImplementation 'org.mockito:mockito-inline:2.25.1'
7677
}

0 commit comments

Comments
 (0)