[components] For https://github.com/mozilla-mobile/android-components/issues/10404...
[gecko.git] / mobile / android / android-components / samples / toolbar / build.gradle
blob880f4e0a4a1e955766eaa1661a9de7e7bb81803d
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'
8 android {
9     compileSdkVersion config.compileSdkVersion
11     defaultConfig {
12         applicationId "org.mozilla.samples.toolbar"
13         minSdkVersion config.minSdkVersion
14         targetSdkVersion config.targetSdkVersion
15         versionCode 1
16         versionName "1.0"
18         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
19     }
21     buildTypes {
22         release {
23             minifyEnabled false
24             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
25         }
26     }
28     buildFeatures {
29         viewBinding true
30     }
34 dependencies {
35     implementation project(':concept-engine')
36     implementation project(':concept-menu')
37     implementation project(':browser-toolbar')
38     implementation project(':browser-menu')
39     implementation project(':browser-menu2')
40     implementation project(':browser-domains')
42     implementation project(':ui-colors')
43     implementation project(':ui-tabcounter')
44     implementation project(':ui-icons')
46     implementation project(':feature-toolbar')
48     implementation project(':support-ktx')
50     implementation project(':support-utils')
52     implementation Dependencies.kotlin_stdlib
53     implementation Dependencies.kotlin_coroutines
55     implementation Dependencies.androidx_appcompat
56     implementation Dependencies.androidx_recyclerview