beans/app/build.gradle

76 lines
2.1 KiB
Groovy
Raw Normal View History

2023-03-21 14:16:14 +01:00
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
id 'org.jetbrains.kotlin.plugin.serialization' version '1.9.23'
id 'com.mikepenz.aboutlibraries.plugin' version '11.1.1'
2023-03-21 14:16:14 +01:00
}
android {
2024-04-03 01:32:02 +02:00
namespace 'net.helcel.beans'
compileSdk 34
2023-03-21 14:16:14 +01:00
defaultConfig {
2024-04-03 01:32:02 +02:00
applicationId 'net.helcel.beans'
2023-03-21 14:16:14 +01:00
minSdk 28
targetSdk 34
2023-03-21 14:16:14 +01:00
versionCode 1
2024-04-04 00:14:33 +02:00
versionName "0.1a"
2023-03-21 14:16:14 +01:00
}
2024-04-04 00:14:33 +02:00
signingConfigs {
create("release") {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile file(keystoreProperties['storeFile'])
storePassword keystoreProperties['storePassword']
}
}
2023-03-21 14:16:14 +01:00
buildTypes {
release {
2024-04-03 01:32:02 +02:00
minifyEnabled true
shrinkResources false
2023-03-21 14:16:14 +01:00
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2024-04-04 00:14:33 +02:00
signingConfig = signingConfigs.getByName("release")
2023-03-21 14:16:14 +01:00
}
}
compileOptions {
2024-04-03 01:32:02 +02:00
coreLibraryDesugaringEnabled true
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
encoding 'utf-8'
2023-03-21 14:16:14 +01:00
}
2024-04-03 01:32:02 +02:00
2023-03-21 14:16:14 +01:00
kotlinOptions {
2024-04-03 01:32:02 +02:00
jvmTarget = JavaVersion.VERSION_17
2023-03-21 14:16:14 +01:00
}
2024-04-03 01:32:02 +02:00
2023-03-21 14:16:14 +01:00
buildFeatures {
viewBinding true
}
2024-04-03 01:32:02 +02:00
dependenciesInfo {
// Disables dependency metadata when building APKs.
includeInApk = false
// Disables dependency metadata when building Android App Bundles.
includeInBundle = false
}
2023-03-21 14:16:14 +01:00
}
2024-04-04 00:14:33 +02:00
aboutLibraries {
exclusionPatterns = [~"androidx.*", ~"com.google.android.*", ~"org.jetbrains.*"]
}
2023-03-21 14:16:14 +01:00
dependencies {
2024-04-03 01:32:02 +02:00
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs_nio:2.0.4'
2024-02-15 22:42:54 +01:00
implementation 'androidx.preference:preference-ktx:1.2.1'
implementation 'com.google.android.material:material:1.11.0'
implementation 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3'
implementation 'com.caverock:androidsvg-aar:1.4'
Update dependency com.github.chrisbanes:PhotoView to v2.3.0 (#29) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [com.github.chrisbanes:PhotoView](https://baseflow.com) ([source](https://github.com/Baseflow/PhotoView)) | dependencies | minor | `2.0.0` -> `2.3.0` | --- ### Release Notes <details> <summary>Baseflow/PhotoView (com.github.chrisbanes:PhotoView)</summary> ### [`v2.3.0`](https://github.com/Baseflow/PhotoView/compare/2.2.0...2.3.0) [Compare Source](https://github.com/Baseflow/PhotoView/compare/2.2.0...2.3.0) ### [`v2.2.0`](https://github.com/Baseflow/PhotoView/compare/2.1.4...2.2.0) [Compare Source](https://github.com/Baseflow/PhotoView/compare/2.1.4...2.2.0) ### [`v2.1.4`](https://github.com/Baseflow/PhotoView/compare/2.1.3...2.1.4) [Compare Source](https://github.com/Baseflow/PhotoView/compare/2.1.3...2.1.4) ### [`v2.1.3`](https://github.com/Baseflow/PhotoView/compare/2.1.1...2.1.3) [Compare Source](https://github.com/Baseflow/PhotoView/compare/2.1.1...2.1.3) ### [`v2.1.1`](https://github.com/Baseflow/PhotoView/compare/2.1.0...2.1.1) [Compare Source](https://github.com/Baseflow/PhotoView/compare/2.1.0...2.1.1) ### [`v2.1.0`](https://github.com/Baseflow/PhotoView/compare/2.0.0...2.1.0) [Compare Source](https://github.com/Baseflow/PhotoView/compare/2.0.0...2.1.0) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "every day" (UTC), Automerge - "every weekend" (UTC). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Co-authored-by: Renovate Bot <renovate-bot@gitea.com> Reviewed-on: https://git.helcel.net/helcel/beendroid/pulls/29 Co-authored-by: bot <bot@helcel.net> Co-committed-by: bot <bot@helcel.net>
2024-02-08 03:01:38 +01:00
implementation 'com.github.chrisbanes:PhotoView:2.3.0'
implementation "com.github.AppDevNext:AndroidChart:3.1.0.21"
implementation 'com.mikepenz:aboutlibraries:11.1.1'
2023-03-21 14:16:14 +01:00
}