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'
10 compileSdkVersion config.compileSdkVersion
13 applicationId "org.mozilla.samples.sync"
14 minSdkVersion config.minSdkVersion
15 targetSdkVersion config.targetSdkVersion
19 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
25 proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
33 include 'x86', 'arm64-v8a', 'armeabi-v7a'
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