132 lines
4.4 KiB
Groovy
132 lines
4.4 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
}
|
|
}
|
|
|
|
android {
|
|
compileSdk 33
|
|
defaultConfig {
|
|
manifestPlaceholders = [oAuthScheme:"moshidon-android-auth"]
|
|
archivesBaseName = "moshidon"
|
|
applicationId "org.joinmastodon.android.moshinda"
|
|
minSdk 23
|
|
targetSdk 33
|
|
versionCode 100
|
|
versionName "1.3.0+fork.100.moshinda"
|
|
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')
|
|
}
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
debug{
|
|
debuggable true
|
|
versionNameSuffix '-debug'
|
|
applicationIdSuffix '.debug'
|
|
manifestPlaceholders = [oAuthScheme:"moshidon-android-debug-auth"]
|
|
}
|
|
githubRelease{
|
|
initWith release
|
|
}
|
|
nightly{
|
|
initWith release
|
|
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"]
|
|
}
|
|
playRelease{
|
|
initWith release
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
versionNameSuffix '-play'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
coreLibraryDesugaringEnabled true
|
|
}
|
|
sourceSets{
|
|
githubRelease{
|
|
setRoot "src/github"
|
|
}
|
|
debug {
|
|
setRoot "src/debug"
|
|
}
|
|
}
|
|
namespace 'org.joinmastodon.android'
|
|
lint {
|
|
abortOnError false
|
|
checkReleaseBuilds false
|
|
}
|
|
|
|
buildFeatures {
|
|
buildConfig true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api 'androidx.annotation:annotation:1.6.0'
|
|
implementation 'com.squareup.okhttp3:okhttp:3.14.9'
|
|
implementation 'me.grishka.litex:recyclerview:1.2.1.1'
|
|
implementation 'me.grishka.litex:swiperefreshlayout:1.1.0.1'
|
|
implementation 'me.grishka.litex:browser:1.4.0'
|
|
implementation 'me.grishka.litex:dynamicanimation:1.1.0-alpha03'
|
|
implementation 'me.grishka.litex:viewpager:1.0.0'
|
|
implementation 'me.grishka.litex:viewpager2:1.0.0'
|
|
implementation 'me.grishka.appkit:appkit:1.2.7'
|
|
implementation 'com.google.code.gson:gson:2.9.0'
|
|
implementation 'org.jsoup:jsoup:1.14.3'
|
|
implementation 'com.squareup:otto:1.3.8'
|
|
implementation 'de.psdev:async-otto:1.0.3'
|
|
implementation 'org.parceler:parceler-api:1.1.12'
|
|
implementation 'com.github.bottom-software-foundation:bottom-java:2.1.0'
|
|
annotationProcessor 'org.parceler:parceler:1.1.12'
|
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
|
|
|
|
androidTestImplementation 'androidx.test:core:1.4.1-alpha05'
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.4-alpha05'
|
|
androidTestImplementation 'androidx.test:runner:1.5.0-alpha02'
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0-alpha05'
|
|
}
|