| repositories { |
| google() |
| mavenCentral() |
| } |
| |
| buildscript { |
| repositories { |
| google() |
| mavenCentral() |
| } |
| |
| dependencies { |
| classpath 'com.android.tools.build:gradle:7.1.1' |
| } |
| } |
| |
| def keystorePropertiesFile = rootProject.file("keystore.properties") |
| def keystoreProperties = new Properties() |
| keystoreProperties.load(new FileInputStream(keystorePropertiesFile)) |
| |
| apply plugin: 'com.android.application' |
| |
| android { |
| compileSdkVersion 29 |
| |
| defaultConfig { |
| minSdkVersion 27 |
| targetSdkVersion 29 |
| } |
| |
| lintOptions { |
| ignore 'ProtectedPermissions' |
| // These depend on translations |
| ignore 'ExtraTranslation', 'ImpliedQuantity', 'MissingQuantity', 'MissingTranslation' |
| } |
| |
| sourceSets { |
| main { |
| res.srcDirs = ['res'] |
| java.srcDirs = ['src'] |
| manifest.srcFile 'AndroidManifest.xml' |
| } |
| } |
| |
| compileOptions { |
| sourceCompatibility JavaVersion.VERSION_1_8 |
| targetCompatibility JavaVersion.VERSION_1_8 |
| } |
| |
| signingConfigs { |
| debug { |
| keyAlias keystoreProperties['keyAlias'] |
| keyPassword keystoreProperties['keyPassword'] |
| storeFile file(keystoreProperties['storeFile']) |
| storePassword keystoreProperties['storePassword'] |
| } |
| } |
| } |
| |
| dependencies { |
| compileOnly fileTree(dir: 'system_libs/', include: ['*.jar']) |
| |
| implementation 'com.google.android.material:material:1.0.0' |
| implementation 'androidx.appcompat:appcompat:1.1.0' |
| implementation 'androidx.cardview:cardview:1.0.0' |
| implementation 'androidx.preference:preference:1.1.0' |
| implementation 'androidx.recyclerview:recyclerview:1.0.0' |
| } |