| repositories { |
| google() |
| mavenCentral() |
| } |
| |
| buildscript { |
| repositories { |
| google() |
| mavenCentral() |
| } |
| |
| dependencies { |
| classpath 'com.android.tools.build:gradle:7.2.0' |
| classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31" |
| } |
| } |
| |
| def keystorePropertiesFile = rootProject.file("keystore.properties") |
| def keystoreProperties = new Properties() |
| keystoreProperties.load(new FileInputStream(keystorePropertiesFile)) |
| |
| apply plugin: 'com.android.application' |
| apply plugin: 'kotlin-android' |
| |
| android { |
| compileSdkVersion 32 |
| |
| defaultConfig { |
| minSdkVersion 32 |
| targetSdkVersion 32 |
| } |
| |
| |
| sourceSets { |
| main { |
| res.srcDirs = ['res', 'res-SettingsTheme'] |
| java.srcDirs = ['src'] |
| manifest.srcFile 'AndroidManifest.xml' |
| } |
| } |
| |
| compileOptions { |
| sourceCompatibility JavaVersion.VERSION_11 |
| targetCompatibility JavaVersion.VERSION_11 |
| } |
| |
| signingConfigs { |
| debug { |
| keyAlias keystoreProperties['keyAlias'] |
| keyPassword keystoreProperties['keyPassword'] |
| storeFile file(keystoreProperties['storeFile']) |
| storePassword keystoreProperties['storePassword'] |
| } |
| } |
| lint { |
| ignore 'ProtectedPermissions', 'ExtraTranslation', 'ImpliedQuantity', 'MissingQuantity', 'MissingTranslation' |
| } |
| } |
| |
| dependencies { |
| compileOnly fileTree(dir: 'system_libs/', include: ['*.jar']) |
| |
| implementation 'com.google.android.material:material:1.4.0' |
| implementation 'androidx.appcompat:appcompat:1.3.0' |
| implementation 'androidx.cardview:cardview:1.0.0' |
| implementation 'androidx.preference:preference:1.1.0' |
| implementation 'androidx.recyclerview:recyclerview:1.2.1' |
| implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0" |
| implementation "androidx.core:core-ktx:+" |
| implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.5.31" |
| } |