1// Top-level build file where you can add configuration options common to all
2// sub-projects/modules.
3buildscript {
4 repositories {
5 google()
6 mavenCentral()
7 }
8 dependencies {
9 classpath 'com.android.tools.build:gradle:7.3.1'
10 }
11}
12
13plugins {
14 id 'org.ajoberstar.grgit' version '4.1.1'
15}
16
17apply plugin: 'com.android.application'
18
19repositories {
20 google()
21 mavenCentral()
22 jcenter()
23 maven { url 'https://jitpack.io' }
24}
25
26def tags = grgit.tag.list().findAll { it.dateTime != null }.sort { it.dateTime }
27
28configurations {
29 playstoreImplementation
30 freeImplementation
31 conversationsFreeImplementation
32 cheogramPlaystoreImplementation
33 conversationsPlaystoreImplementation
34 quicksyPlaystoreImplementation
35 quicksyPlaystoreImplementation
36 quicksyFreeImplementation
37 quicksyImplementation
38}
39
40dependencies {
41 coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
42
43 androidTestImplementation 'tools.fastlane:screengrab:2.1.1'
44 androidTestImplementation 'junit:junit:4.13.2'
45 androidTestImplementation 'androidx.test:runner:1.3.0'
46 androidTestImplementation 'androidx.test:rules:1.3.0'
47 androidTestImplementation 'androidx.test.ext:junit:1.1.2'
48 androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
49
50 implementation 'androidx.viewpager:viewpager:1.0.0'
51
52 playstoreImplementation('com.google.firebase:firebase-messaging:23.1.1') {
53 exclude group: 'com.google.firebase', module: 'firebase-core'
54 exclude group: 'com.google.firebase', module: 'firebase-analytics'
55 exclude group: 'com.google.firebase', module: 'firebase-measurement-connector'
56 }
57 cheogramPlaystoreImplementation("com.android.installreferrer:installreferrer:2.2")
58 cheogramPlaystoreImplementation 'com.github.singpolyma:play-licensing:1c637ea03c'
59 conversationsPlaystoreImplementation("com.android.installreferrer:installreferrer:2.2")
60 quicksyPlaystoreImplementation 'com.google.android.gms:play-services-auth-api-phone:18.0.1'
61 implementation 'org.sufficientlysecure:openpgp-api:10.0'
62 implementation 'com.theartofdev.edmodo:android-image-cropper:2.8.0'
63 implementation 'androidx.appcompat:appcompat:1.5.1'
64 implementation 'androidx.exifinterface:exifinterface:1.3.5'
65 implementation 'androidx.cardview:cardview:1.0.0'
66 implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
67 implementation 'com.google.android.material:material:1.7.0'
68
69 implementation "androidx.emoji2:emoji2:1.2.0"
70 freeImplementation "androidx.emoji2:emoji2-bundled:1.2.0"
71
72 implementation 'org.bouncycastle:bcmail-jdk15on:1.64'
73 //zxing stopped supporting Java 7 so we have to stick with 3.3.3
74 //https://github.com/zxing/zxing/issues/1170
75 implementation 'com.google.zxing:core:3.3.3'
76 implementation 'de.measite.minidns:minidns-hla:0.2.4'
77 implementation 'me.leolin:ShortcutBadger:1.1.22@aar'
78 implementation 'org.whispersystems:signal-protocol-android:2.6.2'
79 implementation "com.wefika:flowlayout:0.4.1"
80 //noinspection GradleDependency
81 implementation 'com.otaliastudios:transcoder:0.9.1'
82
83 implementation 'org.jxmpp:jxmpp-jid:1.0.3'
84 implementation 'org.osmdroid:osmdroid-android:6.1.11'
85 implementation 'org.hsluv:hsluv:0.2'
86 implementation 'org.conscrypt:conscrypt-android:2.5.2'
87 implementation 'me.drakeet.support:toastcompat:1.1.0'
88 implementation "com.leinardi.android:speed-dial:3.2.0"
89
90 implementation "com.squareup.retrofit2:retrofit:2.9.0"
91 implementation "com.squareup.retrofit2:converter-gson:2.9.0"
92 implementation "com.squareup.okhttp3:okhttp:4.10.0"
93
94 implementation 'com.google.guava:guava:31.1-android'
95 implementation 'io.michaelrocks:libphonenumber-android:8.12.49'
96 implementation 'io.github.nishkarsh:android-permissions:2.1.6'
97 implementation 'androidx.recyclerview:recyclerview:1.1.0'
98 implementation 'androidx.documentfile:documentfile:1.0.1'
99 implementation 'com.github.martin-stone:hsv-alpha-color-picker-android:2.4.2'
100 implementation 'com.github.ipld:java-cid:v1.3.1'
101 implementation 'com.splitwise:tokenautocomplete:3.0.2'
102 implementation 'com.github.singpolyma:Better-Link-Movement-Method:4df081e1e4'
103 implementation 'com.github.singpolyma:android-identicons:3361281bd4'
104 implementation 'org.snikket:webrtc-android:107.0.0'
105 implementation 'com.github.woltapp:blurhash:master'
106 implementation 'com.caverock:androidsvg-aar:1.4'
107 implementation 'org.tomlj:tomlj:1.1.0'
108 implementation 'com.tbuonomo.andrui:viewpagerdotsindicator:4.1.2'
109 // INSERT
110}
111
112ext {
113 preDexEnabled = System.getProperty("pre-dex", "true")
114 abiCodes = ['armeabi-v7a': 1, 'x86': 2, 'x86_64': 3, 'arm64-v8a': 4]
115}
116
117android {
118 namespace 'eu.siacs.conversations'
119 compileSdkVersion 33
120
121 defaultConfig {
122 minSdkVersion 21
123 targetSdkVersion 32
124 versionCode 42024 + tags.size()
125 versionName grgit.describe(always: true)
126 applicationId "eu.siacs.conversations"
127 resValue "string", "applicationId", applicationId
128 def appName = "Conversations"
129 resValue "string", "app_name", appName
130 buildConfigField "String", "APP_NAME", "\"$appName\"";
131 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
132 }
133
134 configurations {
135 implementation.exclude group: 'org.jetbrains' , module:'annotations'
136 }
137
138 dataBinding {
139 enabled true
140 }
141
142 compileOptions {
143 coreLibraryDesugaringEnabled true
144 sourceCompatibility JavaVersion.VERSION_1_8
145 targetCompatibility JavaVersion.VERSION_1_8
146 }
147
148 flavorDimensions("mode", "distribution")
149
150 productFlavors {
151
152 quicksy {
153 dimension "mode"
154 applicationId = "im.quicksy.client"
155 resValue "string", "applicationId", applicationId
156
157 def appName = "Quicksy"
158 resValue "string", "app_name", appName
159 buildConfigField "String", "APP_NAME", "\"$appName\""
160 }
161
162 conversations {
163 dimension "mode"
164 }
165
166 cheogram {
167 dimension "mode"
168
169 applicationId = "com.cheogram.android"
170 resValue "string", "applicationId", applicationId
171
172 def appName = "Cheogram"
173 resValue "string", "app_name", appName
174 buildConfigField "String", "APP_NAME", "\"$appName\"";
175 }
176
177 playstore {
178 dimension "distribution"
179 versionNameSuffix "+playstore"
180 applicationIdSuffix "playstore"
181 }
182 free {
183 dimension "distribution"
184 versionNameSuffix "+free"
185 }
186 }
187
188 sourceSets {
189 quicksyFree {
190 java {
191 srcDir 'src/quicksyFree/java'
192 }
193 }
194 quicksyPlaystore {
195 java {
196 srcDir 'src/quicksyPlaystore/java'
197 }
198 res {
199 srcDir 'src/quicksyPlaystore/res'
200 }
201 }
202 conversationsFree {
203 java {
204 srcDir 'src/conversationsFree/java'
205 }
206 }
207 cheogramFree {
208 java {
209 srcDir 'src/conversationsFree/java'
210 }
211 }
212 conversationsPlaystore {
213 java {
214 srcDir 'src/conversationsPlaystore/java'
215 }
216 res {
217 srcDir 'src/conversationsPlaystore/res'
218 }
219 }
220 }
221
222 buildTypes {
223 release {
224 shrinkResources true
225 minifyEnabled true
226 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
227 ndk.debugSymbolLevel = 'full'
228 }
229 debug {
230 shrinkResources true
231 minifyEnabled true
232 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
233 }
234 }
235
236
237 if (new File("signing.properties").exists()) {
238 Properties props = new Properties()
239 props.load(new FileInputStream(file("signing.properties")))
240
241 signingConfigs {
242 release {
243 storeFile file(props['keystore'])
244 storePassword props['keystore.password']
245 keyAlias props['keystore.alias']
246 keyPassword props['keystore.password']
247 }
248 }
249 buildTypes.release.signingConfig = signingConfigs.release
250 }
251
252 lintOptions {
253 disable 'MissingTranslation', 'InvalidPackage','AppCompatResource'
254 abortOnError false
255 }
256
257 subprojects {
258
259 afterEvaluate {
260 if (getPlugins().hasPlugin('android') ||
261 getPlugins().hasPlugin('android-library')) {
262
263 configure(android.lintOptions) {
264 disable 'AndroidGradlePluginVersion', 'MissingTranslation'
265 abortOnError false
266 }
267 }
268
269 }
270 }
271 packagingOptions {
272 resources {
273 excludes += ['META-INF/BCKEY.DSA', 'META-INF/BCKEY.SF']
274 }
275 }
276 lint {
277 disable 'MissingTranslation', 'InvalidPackage', 'AppCompatResource'
278 }
279
280 android.applicationVariants.all { variant ->
281 variant.outputs.each { output ->
282 def baseAbiVersionCode = project.ext.abiCodes.get(output.getFilter(com.android.build.OutputFile.ABI))
283 if (baseAbiVersionCode != null) {
284 output.versionCodeOverride = (100 * project.android.defaultConfig.versionCode) + baseAbiVersionCode
285 } else {
286 output.versionCodeOverride = (100 * project.android.defaultConfig.versionCode) + grgit.log(includes: ["HEAD"], excludes: [tags.last()]).size()
287 }
288 }
289
290 }
291}