@@ -13,8 +13,8 @@ android {
1313
1414 defaultConfig {
1515 // versionCode and versionName must be hardcoded to support F-droid
16- versionCode = 1706001
17- versionName = " 17.6.0 "
16+ versionCode = 1706031
17+ versionName = " 17.6.3 "
1818 minSdk = libs.versions.minSdk.get().toInt()
1919 targetSdk = libs.versions.targetSdk.get().toInt()
2020 compileSdk = libs.versions.compileSdk.get().toInt()
@@ -90,7 +90,7 @@ android {
9090 }
9191
9292 create(" googleInstant" ) {
93- versionCode = 163
93+ versionCode = 164
9494 dimension = " version"
9595 applicationId = " dev.lucasnlm.antimine"
9696 versionNameSuffix = " I"
@@ -100,6 +100,17 @@ android {
100100 }
101101 }
102102
103+ create(" auto" ) {
104+ dimension = " version"
105+ applicationId = " dev.lucasnlm.antimine"
106+ versionNameSuffix = " C"
107+
108+ if (isGoogleBuild) {
109+ plugins.apply (" com.google.gms.google-services" )
110+ plugins.apply (" com.bugsnag.android.gradle" )
111+ }
112+ }
113+
103114 create(" foss" ) {
104115 dimension = " version"
105116 // There"s a typo on F-Droid release :(
@@ -114,6 +125,7 @@ android {
114125}
115126
116127val googleImplementation by configurations
128+ val autoImplementation by configurations
117129val googleInstantImplementation by configurations
118130val fossImplementation by configurations
119131
@@ -131,11 +143,14 @@ dependencies {
131143 implementation(project(" :gdx" ))
132144
133145 googleImplementation(project(" :proprietary" ))
146+ autoImplementation(project(" :proprietary" ))
134147 googleInstantImplementation(project(" :proprietary" ))
135148 googleInstantImplementation(project(" :instant" ))
136149 fossImplementation(project(" :foss" ))
137150 fossImplementation(project(" :donation" ))
138151
152+ autoImplementation(project(" :audio" ))
153+ autoImplementation(project(" :auto" ))
139154 googleImplementation(project(" :audio" ))
140155 fossImplementation(project(" :audio" ))
141156 googleInstantImplementation(project(" :audio-low" ))
0 commit comments