maxwen | f2fe1c9 | 2021-10-20 21:05:29 +0200 | [diff] [blame] | 1 | plugins { |
| 2 | id 'com.android.application' |
| 3 | id 'kotlin-android' |
| 4 | } |
| 5 | |
| 6 | android { |
| 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 | } |
maxwen | 9fd547a | 2021-11-06 15:47:46 +0100 | [diff] [blame] | 24 | debug { |
| 25 | applicationIdSuffix '.debug' |
| 26 | versionNameSuffix ' DEBUG' |
| 27 | } |
maxwen | f2fe1c9 | 2021-10-20 21:05:29 +0200 | [diff] [blame] | 28 | } |
| 29 | compileOptions { |
| 30 | sourceCompatibility JavaVersion.VERSION_1_8 |
| 31 | targetCompatibility JavaVersion.VERSION_1_8 |
| 32 | } |
| 33 | kotlinOptions { |
| 34 | jvmTarget = '1.8' |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | dependencies { |
maxwen | 8d7bf79 | 2021-11-06 00:29:32 +0100 | [diff] [blame] | 39 | implementation fileTree(dir: 'libs', include: ['*.jar']) |
maxwen | f2fe1c9 | 2021-10-20 21:05:29 +0200 | [diff] [blame] | 40 | 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' |
maxwen | d4f6151 | 2021-11-30 00:52:05 +0100 | [diff] [blame] | 44 | implementation 'androidx.recyclerview:recyclerview:1.1.0' |
maxwen | f2fe1c9 | 2021-10-20 21:05:29 +0200 | [diff] [blame] | 45 | } |