moshidon/mastodon/build.gradle

166 lines
5.7 KiB
Groovy
Raw Permalink Normal View History

2022-01-14 13:02:10 +01:00
plugins {
id 'com.android.application'
}
java {
toolchain {
languageVersion = JavaLanguageVersion.of(17)
}
2022-01-14 13:02:10 +01:00
}
android {
2022-09-29 00:23:00 +02:00
compileSdk 33
2022-01-14 13:02:10 +01:00
defaultConfig {
manifestPlaceholders = [oAuthScheme:"moshidon-android-auth"]
archivesBaseName = "moshidon"
applicationId "org.joinmastodon.android.moshinda"
2022-01-14 13:02:10 +01:00
minSdk 23
2024-07-29 21:38:13 +02:00
targetSdk 34
2024-08-03 14:55:17 +02:00
versionCode 107
versionName "2.3.0+fork.107.moshinda"
2022-04-13 03:39:14 +02:00
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
resourceConfigurations += ['ar-rSA', 'ar-rDZ', 'be-rBY', 'bn-rBD', 'bs-rBA', 'ca-rES', 'cs-rCZ', 'da-rDK', 'de-rDE', 'el-rGR', 'es-rES', 'eu-rES', 'fa-rIR', 'fi-rFI', 'fil-rPH', 'fr-rFR', 'ga-rIE', 'gd-rGB', 'gl-rES', 'hi-rIN', 'hr-rHR', 'hu-rHU', 'hy-rAM', 'ig-rNG', 'in-rID', 'is-rIS', 'it-rIT', 'iw-rIL', 'ja-rJP', 'kab', 'ko-rKR', 'my-rMM', 'nl-rNL', 'no-rNO', 'oc-rFR', 'pl-rPL', 'pt-rBR', 'pt-rPT', 'ro-rRO', 'ru-rRU', 'si-rLK', 'sl-rSI', 'sv-rSE', 'th-rTH', 'tr-rTR', 'uk-rUA', 'ur-rIN', 'vi-rVN', 'zh-rCN', 'zh-rTW']
}
signingConfigs {
nightly{
storeFile = file("keystore/nightly_keystore.jks")
storePassword System.getenv("SIGNING_STORE_PASSWORD")
if (storePassword == null) {
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
storePassword = properties.getProperty('SIGNING_STORE_PASSWORD')
}
keyAlias System.getenv("SIGNING_KEY_ALIAS")
if (keyAlias == null) {
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
keyAlias = properties.getProperty('SIGNING_KEY_ALIAS')
}
keyPassword System.getenv("SIGNING_KEY_PASSWORD")
if (keyPassword == null) {
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
keyPassword = properties.getProperty('SIGNING_KEY_PASSWORD')
}
}
// release{
// storeFile = file("keystore/release_keystore.jks")
// storePassword System.getenv("RELEASE_SIGNING_STORE_PASSWORD")
// if (storePassword == null) {
// Properties properties = new Properties()
// properties.load(project.rootProject.file('local.properties').newDataInputStream())
// storePassword = properties.getProperty('RELEASE_SIGNING_STORE_PASSWORD')
// }
// keyAlias System.getenv("RELEASE_SIGNING_KEY_ALIAS")
// if (keyAlias == null) {
// Properties properties = new Properties()
// properties.load(project.rootProject.file('local.properties').newDataInputStream())
// keyAlias = properties.getProperty('RELEASE_SIGNING_KEY_ALIAS')
// }
// keyPassword System.getenv("RELEASE_SIGNING_KEY_PASSWORD")
// if (keyPassword == null) {
// Properties properties = new Properties()
// properties.load(project.rootProject.file('local.properties').newDataInputStream())
// keyPassword = properties.getProperty('RELEASE_SIGNING_KEY_PASSWORD')
// }
// }
2022-01-14 13:02:10 +01:00
}
buildTypes {
release {
2022-03-29 09:38:38 +02:00
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2022-01-14 13:02:10 +01:00
}
2022-02-15 21:09:39 +01:00
debug{
debuggable true
versionNameSuffix '-debug'
applicationIdSuffix '.debug'
manifestPlaceholders = [oAuthScheme:"moshidon-android-debug-auth"]
2022-02-15 21:09:39 +01:00
}
githubRelease{
2022-02-19 01:04:04 +01:00
initWith release
2022-02-15 21:09:39 +01:00
}
nightly{
if(System.getenv("CURRENT_DATE") != null){
versionNameSuffix '-nightly+@' + System.getenv("CURRENT_DATE")
} else {
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
versionNameSuffix '-nightly+@' + properties.getProperty('CURRENT_DATE')
}
applicationIdSuffix '.nightly'
signingConfig signingConfigs.nightly
manifestPlaceholders = [oAuthScheme:"moshidon-android-nightly-auth"]
2022-02-15 21:09:39 +01:00
}
playRelease{
2022-10-31 07:26:17 +01:00
initWith release
minifyEnabled true
shrinkResources true
versionNameSuffix '-play'
2022-10-31 07:26:17 +01:00
}
githubRelease {
initWith release
versionNameSuffix '-github'
}
fdroidRelease {
initWith release
// The F-droid build system doesn't like this at all for some reason.
// versionNameSuffix '-fdroid'
// signingConfig signingConfigs.release
2023-06-04 01:04:55 +02:00
}
2022-01-14 13:02:10 +01:00
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
2022-01-14 13:02:10 +01:00
coreLibraryDesugaringEnabled true
}
2022-02-15 21:09:39 +01:00
sourceSets{
2022-10-31 07:26:17 +01:00
githubRelease{
setRoot "src/github"
}
debug {
setRoot "src/debug"
2023-06-04 01:04:55 +02:00
}
2022-02-15 21:09:39 +01:00
}
namespace 'org.joinmastodon.android'
lint {
2022-09-02 10:21:28 +02:00
abortOnError false
checkReleaseBuilds false
}
buildFeatures {
buildConfig true
2022-09-02 10:21:28 +02:00
}
2022-01-14 13:02:10 +01:00
}
dependencies {
api 'androidx.annotation:annotation:1.6.0'
2022-01-14 13:02:10 +01:00
implementation 'com.squareup.okhttp3:okhttp:3.14.9'
2022-02-07 13:07:12 +01:00
implementation 'me.grishka.litex:recyclerview:1.2.1.1'
2022-03-12 20:02:51 +01:00
implementation 'me.grishka.litex:swiperefreshlayout:1.1.0.1'
2022-01-14 13:02:10 +01:00
implementation 'me.grishka.litex:browser:1.4.0'
2022-01-22 20:34:05 +01:00
implementation 'me.grishka.litex:dynamicanimation:1.1.0-alpha03'
2022-02-07 13:07:12 +01:00
implementation 'me.grishka.litex:viewpager:1.0.0'
2022-01-22 20:34:05 +01:00
implementation 'me.grishka.litex:viewpager2:1.0.0'
2023-03-14 17:17:37 +01:00
implementation 'me.grishka.litex:palette:1.0.0'
2023-12-04 19:33:25 +01:00
implementation 'me.grishka.appkit:appkit:1.2.16'
implementation 'com.google.code.gson:gson:2.9.0'
2022-01-17 11:27:34 +01:00
implementation 'org.jsoup:jsoup:1.14.3'
2022-01-17 19:50:48 +01:00
implementation 'com.squareup:otto:1.3.8'
implementation 'de.psdev:async-otto:1.0.3'
2022-01-18 20:49:14 +01:00
implementation 'org.parceler:parceler-api:1.1.12'
implementation 'com.github.bottom-software-foundation:bottom-java:2.1.0'
2022-01-18 20:49:14 +01:00
annotationProcessor 'org.parceler:parceler:1.1.12'
2023-06-04 01:04:55 +02:00
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:2.0.3'
implementation 'com.github.UnifiedPush:android-connector:2.1.1'
2022-04-13 03:39:14 +02:00
2023-06-29 21:17:59 +02:00
androidTestImplementation 'androidx.test:core:1.5.0'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test:runner:1.5.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
2022-12-15 17:41:38 +01:00
}