Bug 1802817 - Set namespace via DSL in gradle build files.
[gecko.git] / mobile / android / focus-android / service-telemetry / build.gradle
blob04904ae1f5a01adfa6969693d409335c9cf12861
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.library'
6 apply plugin: 'kotlin-android'
8 android {
9     compileSdkVersion 33
11     defaultConfig {
12         minSdkVersion 21
13         targetSdkVersion 33
14     }
16     buildTypes {
17         release {
18             minifyEnabled false
19             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
20         }
21     }
22     compileOptions {
23         sourceCompatibility JavaVersion.VERSION_11
24         targetCompatibility JavaVersion.VERSION_11
25     }
26     kotlinOptions {
27         jvmTarget = '1.8'
28     }
30     namespace 'org.mozilla.telemetry'
33 dependencies {
34     implementation project(':support-base')
35     implementation project(':concept-fetch')
37     implementation FocusDependencies.androidx_annotation