blob: d069598b4dad32796dddd368108c12559d8eefad [file] [log] [blame]
maxwenf2fe1c92021-10-20 21:05:29 +02001plugins {
2 id 'com.android.application'
3 id 'kotlin-android'
4}
5
6android {
7 compileSdk 31
8
9 defaultConfig {
10 applicationId "org.omnirom.control"
11 minSdk 31
12 targetSdk 31
13 versionCode 1
14 versionName "1.0"
15
16 testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
17 }
18
19 buildTypes {
20 release {
21 minifyEnabled false
22 proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
23 }
24 }
25 compileOptions {
26 sourceCompatibility JavaVersion.VERSION_1_8
27 targetCompatibility JavaVersion.VERSION_1_8
28 }
29 kotlinOptions {
30 jvmTarget = '1.8'
31 }
32}
33
34dependencies {
35
36 implementation 'androidx.core:core-ktx:1.6.0'
37 implementation 'androidx.appcompat:appcompat:1.3.1'
38 implementation 'com.google.android.material:material:1.4.0'
39 implementation 'androidx.preference:preference-ktx:1.1.1'
40}