@@ -5,7 +5,7 @@ android {
5
5
testNamespace namespace + ' .test'
6
6
compileSdk 34
7
7
8
- def getVersionCode = { -> return 58 }
8
+ def getVersionCode = { -> return 59 }
9
9
10
10
defaultConfig {
11
11
manifestPlaceholders. providerId = ' mediaphone'
@@ -17,7 +17,7 @@ android {
17
17
targetSdkVersion 34
18
18
minSdkVersion 14
19
19
versionCode getVersionCode()
20
- versionName ' 1.7.5 '
20
+ versionName ' 1.7.6 '
21
21
// versionNameSuffix = '-beta-1'
22
22
resourceConfigurations + = [' en' , ' es' , ' fr' , ' nl' , ' pt' , ' pl' , ' ru' ]
23
23
}
@@ -44,6 +44,10 @@ android {
44
44
matchingFallbacks = [' debug' ]
45
45
}
46
46
}
47
+ buildFeatures {
48
+ // https://developer.android.com/r/tools/upgrade-assistant/build-config-default
49
+ buildConfig true
50
+ }
47
51
48
52
// automatically regenerate fastlane metadata for new releases
49
53
tasks. register(' generateMetadata' , Exec ) {
@@ -64,23 +68,14 @@ android {
64
68
dependencies {
65
69
implementation project(' :MediaUtilities' )
66
70
71
+ // noinspection GradleDependency - upgrading to 1.12.0 and beyond requires API 19; we want to keep a lower minimum
67
72
implementation ' com.google.android.material:material:1.11.0' // for overall UI appearance
68
73
implementation ' androidx.exifinterface:exifinterface:1.3.7' // for auto-selection of export resolution
69
74
// noinspection GradleDependency - upgrading to 1.13.0 and beyond requires API 19; we want to keep a lower minimum
70
75
implementation ' androidx.core:core:1.12.0' // for FileProvider
71
76
implementation ' androidx.documentfile:documentfile:1.0.1' // for Storage Access Framework
72
77
73
- androidTestImplementation ' androidx.test.espresso:espresso-core:3.5 .1'
74
- androidTestImplementation ' androidx.test.ext:junit:1.1.5 '
78
+ androidTestImplementation ' androidx.test.espresso:espresso-core:3.6 .1'
79
+ androidTestImplementation ' androidx.test.ext:junit:1.2.1 '
75
80
androidTestImplementation ' androidx.test.uiautomator:uiautomator:2.3.0'
76
-
77
- // fix dependency conflicts with kotlin-stdlib - see: https://youtrack.jetbrains.com/issue/KT-54136/
78
- constraints {
79
- implementation(' org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.8.0' ) {
80
- because(' kotlin-stdlib-jdk7 is now a part of kotlin-stdlib' )
81
- }
82
- implementation(' org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0' ) {
83
- because(' kotlin-stdlib-jdk8 is now a part of kotlin-stdlib' )
84
- }
85
- }
86
81
}
0 commit comments