2021-10-01 20:19:42 +00:00
|
|
|
plugins {
|
|
|
|
id 'com.android.application'
|
|
|
|
id 'com.mikepenz.aboutlibraries.plugin'
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
2022-07-15 15:22:37 +00:00
|
|
|
compileSdk 33
|
2021-10-01 20:19:42 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId "com.fox2code.mmm"
|
|
|
|
minSdk 21
|
2022-07-15 15:22:37 +00:00
|
|
|
targetSdk 33
|
2022-07-22 09:39:04 +00:00
|
|
|
versionCode 50
|
|
|
|
versionName "0.6.0-dev1"
|
2021-10-01 20:19:42 +00:00
|
|
|
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled true
|
|
|
|
shrinkResources true
|
2022-02-06 17:06:26 +00:00
|
|
|
proguardFiles getDefaultProguardFile(
|
|
|
|
'proguard-android-optimize.txt'), 'proguard-rules.pro'
|
2021-10-01 20:19:42 +00:00
|
|
|
}
|
|
|
|
debug {
|
|
|
|
applicationIdSuffix '.debug'
|
|
|
|
debuggable true
|
|
|
|
}
|
|
|
|
}
|
2022-03-30 17:09:00 +00:00
|
|
|
|
|
|
|
flavorDimensions "type"
|
|
|
|
productFlavors {
|
|
|
|
"default" {
|
|
|
|
dimension "type"
|
|
|
|
buildConfigField "boolean", "ENABLE_AUTO_UPDATER", "true"
|
2022-04-02 10:43:30 +00:00
|
|
|
buildConfigField(
|
|
|
|
"java.util.List<String>",
|
2022-07-16 19:29:25 +00:00
|
|
|
"ENABLED_REPOS",
|
2022-07-17 17:25:25 +00:00
|
|
|
"java.util.Arrays.asList(\"magisk_alt_repo\", \"dg_magisk_repo\", \"androidacy_repo\")",
|
2022-04-02 10:43:30 +00:00
|
|
|
)
|
2022-03-30 17:09:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fdroid {
|
|
|
|
dimension "type"
|
|
|
|
applicationIdSuffix ".fdroid"
|
|
|
|
|
|
|
|
// Need to disable auto-updater for F-Droid flavor because their inclusion policy
|
|
|
|
// forbids downloading blobs from third-party websites (and F-Droid APK isn't signed
|
|
|
|
// with our keys, so the APK wouldn't install anyways).
|
|
|
|
buildConfigField "boolean", "ENABLE_AUTO_UPDATER", "false"
|
2022-04-02 10:43:30 +00:00
|
|
|
|
|
|
|
// Repo with ads or tracking feature are disabled by default for the
|
|
|
|
// F-Droid flavor.
|
|
|
|
buildConfigField(
|
|
|
|
"java.util.List<String>",
|
2022-07-16 19:29:25 +00:00
|
|
|
"ENABLED_REPOS",
|
|
|
|
"java.util.Arrays.asList(\"magisk_alt_repo\")",
|
2022-04-02 10:43:30 +00:00
|
|
|
)
|
2022-03-30 17:09:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-01 20:19:42 +00:00
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
2022-01-23 18:17:08 +00:00
|
|
|
lint {
|
2021-11-05 14:22:33 +00:00
|
|
|
disable 'MissingTranslation'
|
2022-04-10 07:40:23 +00:00
|
|
|
disable 'TypographyEllipsis'
|
2021-11-05 14:22:33 +00:00
|
|
|
}
|
2021-10-01 20:19:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
aboutLibraries {
|
2022-05-19 16:12:56 +00:00
|
|
|
additionalLicenses = ["LGPL_3_0_only"]
|
2021-10-01 20:19:42 +00:00
|
|
|
}
|
|
|
|
|
2021-10-23 16:14:40 +00:00
|
|
|
configurations {
|
|
|
|
implementation.exclude group: 'org.jetbrains' , module: 'annotations'
|
|
|
|
}
|
|
|
|
|
2021-10-01 20:19:42 +00:00
|
|
|
dependencies {
|
|
|
|
// UI
|
2022-06-15 14:09:56 +00:00
|
|
|
implementation 'androidx.appcompat:appcompat:1.4.2'
|
2022-02-25 23:24:49 +00:00
|
|
|
implementation 'androidx.emoji2:emoji2:1.1.0'
|
|
|
|
implementation 'androidx.emoji2:emoji2-views-helper:1.1.0'
|
2022-01-31 21:59:47 +00:00
|
|
|
implementation 'androidx.preference:preference:1.2.0'
|
2022-06-01 11:59:49 +00:00
|
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
2021-10-01 20:19:42 +00:00
|
|
|
implementation 'androidx.recyclerview:recyclerview:1.2.1'
|
|
|
|
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
|
2022-01-30 22:32:10 +00:00
|
|
|
implementation 'androidx.webkit:webkit:1.4.0'
|
2022-06-15 14:09:56 +00:00
|
|
|
implementation 'com.google.android.material:material:1.6.1'
|
2021-10-01 20:19:42 +00:00
|
|
|
implementation "com.mikepenz:aboutlibraries:${latestAboutLibsRelease}"
|
2022-02-03 20:08:30 +00:00
|
|
|
implementation "dev.rikka.rikkax.layoutinflater:layoutinflater:1.2.0"
|
2022-07-16 14:13:58 +00:00
|
|
|
implementation "dev.rikka.rikkax.insets:insets:1.3.0"
|
2022-02-12 18:47:38 +00:00
|
|
|
implementation 'com.github.Dimezis:BlurView:version-1.6.6'
|
2022-06-03 15:26:57 +00:00
|
|
|
implementation 'com.github.KieronQuinn:MonetCompat:0.4.1'
|
2022-07-25 16:02:54 +00:00
|
|
|
implementation 'com.github.Fox2Code:FoxCompat:0.0.3'
|
2021-10-01 20:19:42 +00:00
|
|
|
|
|
|
|
// Utils
|
2022-07-20 13:25:58 +00:00
|
|
|
implementation 'androidx.work:work-runtime:2.7.1'
|
2021-12-02 16:41:07 +00:00
|
|
|
implementation 'com.squareup.okhttp3:okhttp-dnsoverhttps:4.9.3'
|
|
|
|
implementation 'com.squareup.okhttp3:okhttp-brotli:4.9.3'
|
2022-05-05 15:27:31 +00:00
|
|
|
implementation 'com.github.topjohnwu.libsu:io:5.0.1'
|
2022-06-15 14:09:56 +00:00
|
|
|
implementation 'com.github.Fox2Code:RosettaX:1.0.8'
|
2022-06-01 15:50:26 +00:00
|
|
|
implementation 'com.github.Fox2Code:AndroidANSI:1.0.1'
|
2021-10-01 20:19:42 +00:00
|
|
|
|
|
|
|
// Markdown
|
|
|
|
implementation "io.noties.markwon:core:4.6.2"
|
|
|
|
implementation "io.noties.markwon:html:4.6.2"
|
|
|
|
implementation "io.noties.markwon:image:4.6.2"
|
2021-10-23 16:14:40 +00:00
|
|
|
implementation "io.noties.markwon:syntax-highlight:4.6.2"
|
|
|
|
annotationProcessor "io.noties:prism4j-bundler:2.0.0"
|
2021-10-01 20:19:42 +00:00
|
|
|
implementation "com.caverock:androidsvg:1.4"
|
|
|
|
|
|
|
|
// Test
|
|
|
|
testImplementation 'junit:junit:4.+'
|
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
|
2022-04-02 10:43:30 +00:00
|
|
|
}
|