89 lines
2.9 KiB
Groovy
89 lines
2.9 KiB
Groovy
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
java {
|
|
toolchain {
|
|
languageVersion = JavaLanguageVersion.of(17)
|
|
}
|
|
}
|
|
|
|
android {
|
|
compileSdk 33
|
|
defaultConfig {
|
|
archivesBaseName = "megalodon"
|
|
applicationId "org.joinmastodon.android.sk"
|
|
minSdk 23
|
|
targetSdk 33
|
|
versionCode 98
|
|
versionName "2.0.3+fork.98"
|
|
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']
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled true
|
|
shrinkResources true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
debug{
|
|
debuggable true
|
|
versionNameSuffix '-debug'
|
|
applicationIdSuffix '.debug'
|
|
}
|
|
githubRelease { initWith release }
|
|
playRelease { initWith release }
|
|
fdroidRelease { initWith release }
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_17
|
|
targetCompatibility JavaVersion.VERSION_17
|
|
coreLibraryDesugaringEnabled true
|
|
}
|
|
sourceSets{
|
|
githubRelease{
|
|
setRoot "src/github"
|
|
}
|
|
debug {
|
|
setRoot "src/github"
|
|
}
|
|
}
|
|
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.litex:palette:1.0.0'
|
|
implementation 'me.grishka.appkit:appkit:1.2.9'
|
|
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:2.0.3'
|
|
implementation 'com.github.UnifiedPush:android-connector:2.1.1'
|
|
|
|
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'
|
|
}
|