nextpush-android/app/build.gradle

75 lines
2.4 KiB
Groovy
Raw Normal View History

2021-11-22 09:27:58 +01:00
plugins {
id 'com.android.application'
id 'kotlin-android'
}
android {
2022-09-20 00:26:28 +02:00
compileSdkVersion 33
buildToolsVersion "33.0.0"
2021-11-22 09:27:58 +01:00
defaultConfig {
applicationId "org.unifiedpush.distributor.nextpush"
minSdkVersion 24
2022-09-20 00:26:28 +02:00
targetSdkVersion 33
2023-06-12 23:47:08 +02:00
versionCode 26
versionName "1.7.1"
2021-11-22 09:27:58 +01:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
2023-06-05 22:41:07 +02:00
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
2021-11-22 09:27:58 +01:00
buildTypes {
release {
resValue "string", "app_name", "NextPush"
minifyEnabled true
shrinkResources true
2021-11-22 09:27:58 +01:00
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug {
resValue "string", "app_name", "NextPush-dbg"
applicationIdSuffix ".debug"
debuggable true
}
}
2022-09-20 00:26:28 +02:00
namespace 'org.unifiedpush.distributor.nextpush'
2021-11-22 09:27:58 +01:00
}
2021-11-26 00:57:34 +01:00
if (project.hasProperty('sign')) {
android {
signingConfigs {
release {
storeFile file(System.getenv("RELEASE_STORE_FILE"))
storePassword System.getenv("RELEASE_STORE_PASSWORD")
keyAlias System.getenv("RELEASE_KEY_ALIAS")
keyPassword System.getenv("RELEASE_KEY_PASSWORD")
}
}
}
android.buildTypes.release.signingConfig android.signingConfigs.release
}
2023-03-01 00:41:37 +01:00
ext {
retrofitVersion = "2.9.0"
}
2021-11-22 09:27:58 +01:00
dependencies {
2021-11-24 22:14:48 +01:00
implementation("org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version")
implementation("androidx.appcompat:appcompat:1.6.1")
2023-05-30 22:31:34 +02:00
implementation("com.google.android.material:material:1.9.0")
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
2022-09-20 00:26:28 +02:00
implementation("androidx.coordinatorlayout:coordinatorlayout:1.2.0")
2023-05-30 22:31:34 +02:00
implementation("com.squareup.okhttp3:okhttp-sse:4.11.0")
2023-06-12 23:33:51 +02:00
implementation("com.github.nextcloud:Android-SingleSignOn:0.8.1")
2023-03-01 00:41:37 +01:00
implementation("com.squareup.retrofit2:retrofit:$retrofitVersion")
implementation("com.squareup.retrofit2:converter-gson:$retrofitVersion")
2023-03-06 09:43:08 +01:00
implementation("com.squareup.retrofit2:adapter-rxjava3:$retrofitVersion")
implementation("io.reactivex.rxjava3:rxjava:3.1.6")
2023-03-06 09:43:08 +01:00
implementation("io.reactivex.rxjava3:rxandroid:3.0.2")
implementation("androidx.work:work-runtime-ktx:2.8.1")
2021-11-22 09:27:58 +01:00
}