| plugins { |
| id 'com.android.application' |
| id 'kotlin-android' |
| } |
| |
| android { |
| compileSdk 33 |
| |
| defaultConfig { |
| applicationId "org.omnirom.control" |
| minSdk 31 |
| targetSdk 33 |
| versionCode 1 |
| versionName "1.0" |
| |
| testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" |
| } |
| |
| buildTypes { |
| release { |
| minifyEnabled false |
| proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' |
| } |
| debug { |
| applicationIdSuffix '.debug' |
| versionNameSuffix ' DEBUG' |
| } |
| } |
| compileOptions { |
| sourceCompatibility JavaVersion.VERSION_1_8 |
| targetCompatibility JavaVersion.VERSION_1_8 |
| } |
| kotlinOptions { |
| jvmTarget = '1.8' |
| } |
| sourceSets { |
| main { |
| res.srcDirs = ['src/main/res', 'src/main/res-private'] |
| } |
| } |
| } |
| |
| dependencies { |
| implementation fileTree(dir: 'libs', include: ['*.jar']) |
| implementation 'androidx.core:core-ktx:1.8.0' |
| implementation 'androidx.appcompat:appcompat:1.5.1' |
| implementation 'com.google.android.material:material:1.6.1' |
| implementation 'androidx.preference:preference:1.2.0' |
| implementation 'androidx.recyclerview:recyclerview:1.2.1' |
| implementation 'androidx.lifecycle:lifecycle-viewmodel:2.5.1' |
| implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1' |
| implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.1' |
| } |