[components] Post: Add password synchronization to samples-sync app
[gecko.git] / mobile / android / android-components / samples / sync / build.gradle
blob4a6b8b562b4a52f1285d49d2bac14228c65fbe8d
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 apply plugin: 'com.android.application'
6 apply plugin: 'kotlin-android'
7 apply plugin: 'kotlin-android-extensions'
9 android {
10     compileSdkVersion config.compileSdkVersion
12     defaultConfig {
13         applicationId "org.mozilla.samples.sync"
14         minSdkVersion config.minSdkVersion
15         targetSdkVersion config.targetSdkVersion
16         versionCode 1
17         versionName "1.0"
19         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
20     }
22     buildTypes {
23         release {
24             minifyEnabled false
25             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
26         }
27     }
29     splits {
30         abi {
31             enable true
32             reset()
33             include 'x86', 'arm64-v8a', 'armeabi-v7a'
34         }
35     }
38 dependencies {
39     implementation project(':concept-storage')
40     implementation project(':browser-storage-sync')
41     implementation project(':service-firefox-accounts')
42     implementation project(':service-sync-logins')
43     implementation project(':support-rustlog')
44     implementation project(':support-rusthttp')
45     implementation project(':lib-fetch-httpurlconnection')
46     implementation project(':lib-dataprotect')
48     implementation Dependencies.kotlin_reflect
49     implementation Dependencies.androidx_recyclerview