solxpect/app/build.gradle

56 lines
2 KiB
Groovy
Raw Normal View History

2023-04-01 15:27:34 +02:00
apply plugin: 'com.android.application'
android {
lintOptions {
disable 'MissingTranslation'
}
dependenciesInfo {
// Disable including dependency metadata when building APKs
includeInApk = false
// Disable including dependency metadata when building Android App Bundles
includeInBundle = false
}
2025-07-01 10:01:17 +02:00
compileSdk 35
android.buildFeatures.buildConfig true
namespace 'org.woheller69.weather'
2023-04-01 15:27:34 +02:00
defaultConfig {
2023-04-05 08:31:56 +02:00
applicationId "org.woheller69.solxpect"
2023-04-01 15:27:34 +02:00
minSdkVersion 26
2025-07-01 10:01:17 +02:00
targetSdk 35
2025-11-03 08:38:06 +01:00
versionCode 28
versionName "2.8"
2023-04-01 15:27:34 +02:00
buildConfigField "String", "BASE_URL", "\"https://api.open-meteo.com/v1/\""
2023-09-21 21:30:12 +02:00
buildConfigField "String", "TILES_URL","\"https://tile.openstreetmap.org/\""
buildConfigField "String", "GEOCODING_URL","\"https://geocoding-api.open-meteo.com/\""
2023-04-05 07:18:03 +02:00
buildConfigField "String", "GITHUB_URL","\"https://github.com/woheller69/solxpect/\""
2023-04-01 15:27:34 +02:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.diogobernardino:williamchart:2.2'
implementation 'net.e175.klaus:solarpositioning:0.1.10'
2025-07-01 10:01:17 +02:00
implementation 'androidx.preference:preference:1.2.1'
implementation 'androidx.appcompat:appcompat:1.7.1'
implementation 'com.google.android.material:material:1.12.0'
2023-04-01 15:27:34 +02:00
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'com.android.volley:volley:1.2.1'
2025-07-01 10:01:17 +02:00
implementation 'androidx.recyclerview:recyclerview:1.4.0'
2023-04-01 15:27:34 +02:00
implementation 'androidx.cardview:cardview:1.0.0'
2023-04-17 10:53:33 +02:00
implementation 'net.lingala.zip4j:zip4j:2.9.1'
2024-05-27 09:16:29 +02:00
implementation 'com.github.woheller69:CompassView:948f3db329'
implementation 'androidx.webkit:webkit:1.5.0'
2025-11-03 08:38:06 +01:00
implementation 'com.github.woheller69:FreeDroidWarn:V1.6'
2023-04-01 15:27:34 +02:00
}