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-01-22 19:02:45 +01:00
|
|
|
versionCode 18
|
|
|
|
versionName "1.4.3"
|
2021-11-22 09:27:58 +01:00
|
|
|
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
resValue "string", "app_name", "NextPush"
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
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")
|
2023-01-11 22:05:42 +01:00
|
|
|
implementation("androidx.appcompat:appcompat:1.6.0")
|
2022-10-20 23:48:10 +02:00
|
|
|
implementation("com.google.android.material:material:1.7.0")
|
2022-05-20 23:28:42 +02:00
|
|
|
implementation("androidx.constraintlayout:constraintlayout:2.1.4")
|
2022-09-20 00:26:28 +02:00
|
|
|
implementation("androidx.coordinatorlayout:coordinatorlayout:1.2.0")
|
|
|
|
implementation("com.squareup.okhttp3:okhttp-sse:4.10.0")
|
|
|
|
implementation("com.github.nextcloud:Android-SingleSignOn:0.6.1")
|
2021-11-24 22:14:48 +01:00
|
|
|
implementation("com.squareup.retrofit2:retrofit:2.9.0")
|
|
|
|
implementation("io.reactivex.rxjava2:rxjava:2.2.21")
|
2022-09-20 00:26:28 +02:00
|
|
|
implementation("androidx.work:work-runtime-ktx:2.7.1")
|
2021-11-22 09:27:58 +01:00
|
|
|
}
|