blob: 42243f7f1a4390b1afe55d42613b8da0dbe4a903 [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 {
maxwen8d7bf792021-11-06 00:29:32 +010035 implementation fileTree(dir: 'libs', include: ['*.jar'])
maxwenf2fe1c92021-10-20 21:05:29 +020036 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}