blob: 72e14f727af2ea77eb1d1a6653b024bc7e8717a1 [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 }
maxwen9fd547a2021-11-06 15:47:46 +010024 debug {
25 applicationIdSuffix '.debug'
26 versionNameSuffix ' DEBUG'
27 }
maxwenf2fe1c92021-10-20 21:05:29 +020028 }
29 compileOptions {
30 sourceCompatibility JavaVersion.VERSION_1_8
31 targetCompatibility JavaVersion.VERSION_1_8
32 }
33 kotlinOptions {
34 jvmTarget = '1.8'
35 }
36}
37
38dependencies {
maxwen8d7bf792021-11-06 00:29:32 +010039 implementation fileTree(dir: 'libs', include: ['*.jar'])
maxwenf2fe1c92021-10-20 21:05:29 +020040 implementation 'androidx.core:core-ktx:1.6.0'
41 implementation 'androidx.appcompat:appcompat:1.3.1'
42 implementation 'com.google.android.material:material:1.4.0'
43 implementation 'androidx.preference:preference-ktx:1.1.1'
maxwend4f61512021-11-30 00:52:05 +010044 implementation 'androidx.recyclerview:recyclerview:1.1.0'
maxwenf2fe1c92021-10-20 21:05:29 +020045}