nextcloud-maps-client/app/build.gradle

96 lines
3.0 KiB
Groovy
Raw Permalink Normal View History

/*
* Nextcloud Geofavorites for Android
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
apply plugin: 'com.android.application'
android {
defaultConfig {
applicationId "it.danieleverducci.nextcloudmaps"
2021-08-27 16:55:26 +02:00
minSdkVersion 23
2024-09-23 08:10:28 +02:00
targetSdkVersion 35
2024-03-01 07:47:17 +01:00
versionCode 9
versionName "0.4.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
// Flag to enable support for the new language APIs
coreLibraryDesugaringEnabled true
// Sets Java compatibility to Java 8
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
2021-08-28 17:14:07 +02:00
buildFeatures {
dataBinding true
}
2024-02-16 06:58:10 +01:00
namespace 'it.danieleverducci.nextcloudmaps'
}
repositories {
// Needed for Nextcloud SSO
maven { url "https://jitpack.io" }
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
// Desugaring lib: see https://developer.android.com/studio/write/java8-support
2024-09-23 08:10:28 +02:00
coreLibraryDesugaring("com.android.tools:desugar_jdk_libs:2.1.2")
2024-02-16 08:11:58 +01:00
implementation 'com.android.support:design:34.0.0'
2024-09-23 08:10:28 +02:00
implementation 'androidx.appcompat:appcompat:1.7.0'
2024-02-16 08:11:58 +01:00
implementation 'androidx.recyclerview:recyclerview:1.3.2'
implementation "androidx.cardview:cardview:1.0.0"
2024-02-16 08:11:58 +01:00
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
implementation "androidx.preference:preference:1.2.1"
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
// Retrofif2
2024-09-23 08:10:28 +02:00
implementation 'com.squareup.retrofit2:retrofit:2.11.0'
implementation 'com.squareup.retrofit2:converter-gson:2.6.1'
// Nextcloud SSO
2024-09-23 08:10:28 +02:00
implementation "com.github.nextcloud:Android-SingleSignOn:1.3.2"
// OSMDroid
2024-02-16 08:11:58 +01:00
implementation 'org.osmdroid:osmdroid-android:6.1.18'
2021-09-15 20:26:29 +02:00
//Threeten-Backport (ports Java 8 Date API on Java 6+)
implementation 'org.threeten:threetenbp:1.5.1'
2024-02-16 08:11:58 +01:00
// https://mvnrepository.com/artifact/commons-io/commons-io
2024-09-23 08:10:28 +02:00
implementation 'commons-io:commons-io:2.13.0'
2024-02-16 08:11:58 +01:00
2024-02-24 07:19:55 +01:00
// Picasso (image loader)
implementation 'com.squareup.picasso:picasso:2.8'
2024-02-16 08:11:58 +01:00
configurations.all {
resolutionStrategy {
force 'commons-io:commons-io:2.11.0'
}
}
}