2021-02-18 02:32:07 +00:00
|
|
|
import cn.hutool.core.util.RuntimeUtil
|
|
|
|
|
2021-03-31 19:29:44 +00:00
|
|
|
apply plugin: "com.android.application"
|
|
|
|
apply plugin: "kotlin-android"
|
2013-10-25 15:19:00 +00:00
|
|
|
|
2022-08-17 16:29:30 +00:00
|
|
|
def verName = "8.9.3"
|
|
|
|
def verCode = 1111
|
2021-02-18 02:32:07 +00:00
|
|
|
|
|
|
|
if (System.getenv("DEBUG_BUILD") == "true") {
|
2022-02-19 16:07:57 +00:00
|
|
|
verName += "-" + RuntimeUtil.execForStr("git log --pretty=format:%h -n 1").trim()
|
2021-02-18 02:32:07 +00:00
|
|
|
}
|
|
|
|
|
2022-08-17 13:27:36 +00:00
|
|
|
def officialVer = "8.9.3"
|
|
|
|
def officialCode = 2757
|
2020-07-22 03:23:05 +00:00
|
|
|
|
2016-10-11 11:57:01 +00:00
|
|
|
configurations {
|
2021-03-31 19:29:44 +00:00
|
|
|
compile.exclude module: "support-v4"
|
2016-10-11 11:57:01 +00:00
|
|
|
}
|
|
|
|
|
2021-02-28 14:37:30 +00:00
|
|
|
def keystorePwd = null
|
|
|
|
def alias = null
|
|
|
|
def pwd = null
|
2021-11-15 18:04:57 +00:00
|
|
|
def disableCMakeRelWithDebInfo = System.getenv("COMPILE_NATIVE") == null
|
2021-02-28 14:37:30 +00:00
|
|
|
|
|
|
|
Properties properties
|
|
|
|
def base64 = System.getenv("LOCAL_PROPERTIES")
|
|
|
|
if (base64 != null && !base64.isBlank()) {
|
|
|
|
properties = new Properties()
|
|
|
|
properties.load(new ByteArrayInputStream(Base64.decoder.decode(base64)))
|
2021-03-31 19:29:44 +00:00
|
|
|
} else if (project.rootProject.file("local.properties").exists()) {
|
2021-02-28 14:37:30 +00:00
|
|
|
properties = new Properties()
|
2021-03-31 19:29:44 +00:00
|
|
|
properties.load(project.rootProject.file("local.properties").newDataInputStream())
|
2021-02-28 14:37:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (properties != null) {
|
|
|
|
keystorePwd = properties.getProperty("KEYSTORE_PASS")
|
|
|
|
alias = properties.getProperty("ALIAS_NAME")
|
|
|
|
pwd = properties.getProperty("ALIAS_PASS")
|
|
|
|
}
|
|
|
|
|
|
|
|
keystorePwd = keystorePwd ?: System.getenv("KEYSTORE_PASS")
|
|
|
|
alias = alias ?: System.getenv("ALIAS_NAME")
|
|
|
|
pwd = pwd ?: System.getenv("ALIAS_PASS")
|
|
|
|
|
2021-04-13 06:49:48 +00:00
|
|
|
def targetTask = ""
|
2021-02-28 14:37:30 +00:00
|
|
|
if (!gradle.startParameter.taskNames.isEmpty()) {
|
|
|
|
if (gradle.startParameter.taskNames.size == 1) {
|
2021-04-13 06:49:48 +00:00
|
|
|
targetTask = gradle.startParameter.taskNames[0].toLowerCase()
|
2021-02-28 14:37:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-31 19:29:44 +00:00
|
|
|
def nativeTarget = System.getenv("NATIVE_TARGET")
|
|
|
|
if (nativeTarget == null) nativeTarget = ""
|
|
|
|
|
2013-10-25 15:19:00 +00:00
|
|
|
android {
|
2022-04-16 14:50:22 +00:00
|
|
|
compileSdkVersion 32
|
|
|
|
buildToolsVersion "32.0.0"
|
2021-02-18 02:32:07 +00:00
|
|
|
ndkVersion rootProject.ext.ndkVersion
|
2020-06-24 16:15:30 +00:00
|
|
|
|
2022-01-21 15:46:56 +00:00
|
|
|
defaultConfig.applicationId = "xyz.nextalone.nagram"
|
2017-12-08 17:35:59 +00:00
|
|
|
|
2021-02-28 07:08:33 +00:00
|
|
|
splits {
|
|
|
|
|
|
|
|
abi {
|
2021-12-20 15:20:02 +00:00
|
|
|
if (targetTask.contains("fdroid")) {
|
|
|
|
enable false
|
|
|
|
universalApk true
|
|
|
|
} else {
|
2022-07-12 13:37:52 +00:00
|
|
|
enable true
|
|
|
|
universalApk false
|
2021-12-20 15:20:02 +00:00
|
|
|
if (!nativeTarget.isBlank()) {
|
|
|
|
reset()
|
|
|
|
include nativeTarget
|
2021-02-28 13:01:58 +00:00
|
|
|
}
|
2021-02-28 07:08:33 +00:00
|
|
|
}
|
|
|
|
}
|
2021-02-28 13:01:58 +00:00
|
|
|
|
2021-02-28 07:08:33 +00:00
|
|
|
}
|
|
|
|
|
2020-06-24 16:15:30 +00:00
|
|
|
defaultConfig {
|
2022-05-15 12:15:41 +00:00
|
|
|
minSdkVersion 21
|
2020-11-04 12:43:49 +00:00
|
|
|
//noinspection ExpiredTargetSdkVersion,OldTargetApi
|
2021-11-06 04:32:15 +00:00
|
|
|
targetSdkVersion 30
|
2015-10-29 17:10:07 +00:00
|
|
|
|
2020-06-24 16:15:30 +00:00
|
|
|
versionName verName
|
|
|
|
versionCode verCode
|
|
|
|
|
2022-07-14 11:48:57 +00:00
|
|
|
def appId = "11535358"
|
|
|
|
def appHash = "33d372962fadb01df47e6ceed4e33cd6"
|
2020-06-24 16:15:30 +00:00
|
|
|
|
|
|
|
//obtain your own keys at https://core.telegram.org/api/obtaining_api_id
|
|
|
|
|
2021-01-16 16:25:30 +00:00
|
|
|
if (properties != null) {
|
|
|
|
appId = properties.getProperty("TELEGRAM_APP_ID") ?: System.getenv("TELEGRAM_APP_ID") ?: appId
|
|
|
|
appHash = properties.getProperty("TELEGRAM_APP_HASH") ?: System.getenv("TELEGRAM_APP_HASH") ?: appHash
|
2020-06-24 16:15:30 +00:00
|
|
|
}
|
|
|
|
|
2021-02-01 17:24:58 +00:00
|
|
|
|
2021-03-31 19:29:44 +00:00
|
|
|
buildConfigField "String", "OFFICIAL_VERSION", "\"" + officialVer + "\""
|
|
|
|
buildConfigField "int", "OFFICIAL_VERSION_CODE", officialCode + ""
|
|
|
|
buildConfigField "int", "APP_ID", appId
|
|
|
|
buildConfigField "String", "APP_HASH", "\"" + appHash + "\""
|
2020-06-24 16:15:30 +00:00
|
|
|
|
|
|
|
externalNativeBuild {
|
2020-10-01 09:01:48 +00:00
|
|
|
cmake {
|
2022-05-15 12:15:41 +00:00
|
|
|
arguments "-DANDROID_STL=c++_static", "-DANDROID_PLATFORM=android-21"
|
2020-06-24 16:15:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bundle {
|
|
|
|
language {
|
|
|
|
enableSplit = false
|
|
|
|
}
|
|
|
|
}
|
2016-10-11 11:57:01 +00:00
|
|
|
|
|
|
|
externalNativeBuild {
|
2020-09-30 13:48:47 +00:00
|
|
|
cmake {
|
2021-03-31 19:29:44 +00:00
|
|
|
path "jni/CMakeLists.txt"
|
2016-10-11 11:57:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-30 02:07:02 +00:00
|
|
|
lintOptions {
|
2021-03-31 19:29:44 +00:00
|
|
|
disable "MissingTranslation"
|
|
|
|
disable "ExtraTranslation"
|
|
|
|
disable "BlockedPrivateApi"
|
2018-07-30 02:07:02 +00:00
|
|
|
}
|
|
|
|
|
2020-06-24 16:15:30 +00:00
|
|
|
packagingOptions {
|
|
|
|
|
2021-03-31 19:29:44 +00:00
|
|
|
exclude "/fabric/**"
|
|
|
|
exclude "/META-INF/*.version"
|
|
|
|
exclude "/META-INF/*.kotlin_module"
|
2021-04-13 02:59:56 +00:00
|
|
|
exclude "/META-INF/native-image/**"
|
2021-03-31 19:29:44 +00:00
|
|
|
exclude "/builddef.lst"
|
|
|
|
exclude "/*.txt"
|
2021-04-13 02:59:56 +00:00
|
|
|
exclude "/DebugProbesKt.bin"
|
|
|
|
exclude "/okhttp3/internal/publicsuffix/NOTICE"
|
2020-06-24 16:15:30 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-01-02 22:15:07 +00:00
|
|
|
compileOptions {
|
2022-02-07 17:14:50 +00:00
|
|
|
sourceCompatibility JavaVersion.VERSION_11
|
|
|
|
targetCompatibility JavaVersion.VERSION_11
|
2020-08-14 16:58:22 +00:00
|
|
|
|
|
|
|
coreLibraryDesugaringEnabled true
|
2015-01-02 22:15:07 +00:00
|
|
|
}
|
2014-03-22 22:31:55 +00:00
|
|
|
|
2020-06-24 16:15:30 +00:00
|
|
|
kotlinOptions {
|
2022-08-17 18:01:37 +00:00
|
|
|
jvmTarget = JavaVersion.VERSION_11.toString()
|
2020-06-24 16:15:30 +00:00
|
|
|
}
|
|
|
|
|
2020-12-17 17:32:45 +00:00
|
|
|
testOptions {
|
|
|
|
unitTests.includeAndroidResources = true
|
|
|
|
}
|
|
|
|
|
2013-12-20 19:25:49 +00:00
|
|
|
signingConfigs {
|
2019-06-11 05:56:33 +00:00
|
|
|
release {
|
2021-03-31 19:29:44 +00:00
|
|
|
storeFile project.file("release.keystore")
|
2020-06-24 16:15:30 +00:00
|
|
|
storePassword keystorePwd
|
|
|
|
keyAlias alias
|
|
|
|
keyPassword pwd
|
2013-12-20 19:25:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
debug {
|
2020-11-22 09:26:11 +00:00
|
|
|
isDefault true
|
2013-12-20 19:25:49 +00:00
|
|
|
debuggable true
|
2021-04-11 00:42:05 +00:00
|
|
|
jniDebuggable true
|
2020-04-24 09:21:58 +00:00
|
|
|
multiDexEnabled true
|
2022-08-17 16:29:30 +00:00
|
|
|
zipAlignEnabled true
|
2022-09-03 18:27:34 +00:00
|
|
|
signingConfig signingConfigs.release
|
2021-05-18 10:21:26 +00:00
|
|
|
ndk.debugSymbolLevel = "FULL"
|
2020-06-24 16:15:30 +00:00
|
|
|
}
|
2019-12-31 13:08:08 +00:00
|
|
|
|
2020-06-24 16:15:30 +00:00
|
|
|
releaseNoGcm {
|
2019-01-23 17:03:33 +00:00
|
|
|
debuggable false
|
|
|
|
jniDebuggable false
|
|
|
|
minifyEnabled true
|
2020-06-24 16:15:30 +00:00
|
|
|
shrinkResources true
|
2020-09-03 15:37:42 +00:00
|
|
|
multiDexEnabled true
|
2020-11-22 02:57:43 +00:00
|
|
|
zipAlignEnabled true
|
2021-03-31 19:29:44 +00:00
|
|
|
proguardFiles getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
|
|
|
|
matchingFallbacks = ["release", "debug"]
|
2022-09-03 18:27:34 +00:00
|
|
|
signingConfig signingConfigs.release
|
2019-01-23 17:03:33 +00:00
|
|
|
}
|
|
|
|
|
2013-12-20 19:25:49 +00:00
|
|
|
release {
|
2020-09-03 15:37:42 +00:00
|
|
|
debuggable false
|
|
|
|
jniDebuggable false
|
|
|
|
minifyEnabled true
|
|
|
|
shrinkResources true
|
|
|
|
multiDexEnabled true
|
2020-11-22 02:57:43 +00:00
|
|
|
zipAlignEnabled true
|
2021-03-31 19:29:44 +00:00
|
|
|
proguardFiles getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
|
|
|
|
matchingFallbacks = ["release", "debug"]
|
2022-09-03 18:27:34 +00:00
|
|
|
signingConfig signingConfigs.release
|
2020-06-24 16:15:30 +00:00
|
|
|
}
|
|
|
|
|
2021-02-28 13:01:58 +00:00
|
|
|
foss {
|
2020-09-03 15:37:42 +00:00
|
|
|
debuggable false
|
|
|
|
jniDebuggable false
|
|
|
|
minifyEnabled true
|
|
|
|
shrinkResources true
|
|
|
|
multiDexEnabled true
|
2020-11-22 02:57:43 +00:00
|
|
|
zipAlignEnabled true
|
2021-03-31 19:29:44 +00:00
|
|
|
proguardFiles getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"
|
|
|
|
matchingFallbacks = ["release", "debug"]
|
2013-12-20 19:25:49 +00:00
|
|
|
}
|
2021-02-28 13:01:58 +00:00
|
|
|
|
2021-12-20 15:20:02 +00:00
|
|
|
fdroidRelease {
|
2021-02-28 13:01:58 +00:00
|
|
|
initWith foss
|
2021-03-31 19:29:44 +00:00
|
|
|
matchingFallbacks = ["release", "debug"]
|
2021-02-28 13:01:58 +00:00
|
|
|
}
|
2014-03-22 22:31:55 +00:00
|
|
|
}
|
|
|
|
|
2020-07-08 04:00:22 +00:00
|
|
|
sourceSets {
|
2014-11-21 19:36:21 +00:00
|
|
|
|
2020-07-08 04:00:22 +00:00
|
|
|
main {
|
2021-04-13 02:59:56 +00:00
|
|
|
jni.srcDirs = []
|
2021-11-15 18:04:57 +00:00
|
|
|
assets.srcDirs = ["src/main/assets", "src/emojis/twitter"]
|
2020-07-08 04:00:22 +00:00
|
|
|
}
|
2020-06-24 16:15:30 +00:00
|
|
|
|
2020-07-08 04:00:22 +00:00
|
|
|
debug {
|
2021-02-28 02:26:20 +00:00
|
|
|
java {
|
2021-03-31 19:29:44 +00:00
|
|
|
srcDirs "src/main/java", "src/gservcies/java"
|
2021-02-28 02:26:20 +00:00
|
|
|
}
|
2021-11-15 18:04:57 +00:00
|
|
|
jni.srcDirs = ["./jni/"]
|
2021-02-28 02:26:20 +00:00
|
|
|
manifest {
|
2021-03-31 19:29:44 +00:00
|
|
|
srcFile "src/gservcies/AndroidManifest.xml"
|
2021-02-28 02:26:20 +00:00
|
|
|
}
|
2020-07-08 04:00:22 +00:00
|
|
|
}
|
2020-06-24 16:15:30 +00:00
|
|
|
|
2020-07-08 04:00:22 +00:00
|
|
|
releaseNoGcm {
|
2021-11-15 18:04:57 +00:00
|
|
|
jni.srcDirs = []
|
2021-02-28 02:26:20 +00:00
|
|
|
jniLibs {
|
2021-03-31 19:29:44 +00:00
|
|
|
srcDir "src/main/libs"
|
2021-02-28 02:26:20 +00:00
|
|
|
}
|
2020-07-08 04:00:22 +00:00
|
|
|
}
|
2020-06-24 16:15:30 +00:00
|
|
|
|
2020-07-08 04:00:22 +00:00
|
|
|
release {
|
2021-02-28 02:26:20 +00:00
|
|
|
java {
|
2021-03-31 19:29:44 +00:00
|
|
|
srcDirs "src/main/java", "src/gservcies/java"
|
2021-02-28 02:26:20 +00:00
|
|
|
}
|
2021-11-15 18:04:57 +00:00
|
|
|
jni.srcDirs = []
|
2021-02-28 02:26:20 +00:00
|
|
|
jniLibs {
|
2021-03-31 19:29:44 +00:00
|
|
|
srcDir "src/main/libs"
|
2021-02-28 02:26:20 +00:00
|
|
|
}
|
|
|
|
manifest {
|
2021-03-31 19:29:44 +00:00
|
|
|
srcFile "src/gservcies/AndroidManifest.xml"
|
2021-02-28 02:26:20 +00:00
|
|
|
}
|
2020-07-08 04:00:22 +00:00
|
|
|
}
|
2020-06-24 16:15:30 +00:00
|
|
|
|
2021-02-28 13:01:58 +00:00
|
|
|
foss {
|
2021-02-28 02:26:20 +00:00
|
|
|
jni {
|
2021-03-31 19:29:44 +00:00
|
|
|
srcDirs = ["./jni/"]
|
2021-02-28 02:26:20 +00:00
|
|
|
}
|
2020-07-08 04:00:22 +00:00
|
|
|
}
|
2020-06-24 16:15:30 +00:00
|
|
|
|
2021-12-20 15:20:02 +00:00
|
|
|
fdroidRelease {
|
2021-02-28 18:40:50 +00:00
|
|
|
jni {
|
2021-03-31 19:29:44 +00:00
|
|
|
srcDirs = ["./jni/"]
|
2021-02-28 18:40:50 +00:00
|
|
|
}
|
2021-11-15 18:04:57 +00:00
|
|
|
jniLibs.srcDirs = []
|
2021-02-28 18:40:50 +00:00
|
|
|
}
|
|
|
|
|
2020-07-08 04:00:22 +00:00
|
|
|
}
|
2020-06-24 16:15:30 +00:00
|
|
|
|
|
|
|
flavorDimensions "version"
|
2019-05-14 12:08:05 +00:00
|
|
|
|
2020-06-24 16:15:30 +00:00
|
|
|
productFlavors {
|
|
|
|
mini {
|
2021-05-18 10:24:06 +00:00
|
|
|
isDefault true
|
2021-11-17 13:09:53 +00:00
|
|
|
manifestPlaceholders = [is_full_version: "false"]
|
2020-06-24 16:15:30 +00:00
|
|
|
}
|
2020-08-16 01:08:56 +00:00
|
|
|
full {
|
2021-11-17 13:09:53 +00:00
|
|
|
manifestPlaceholders = [is_full_version: "true"]
|
2020-08-20 09:08:26 +00:00
|
|
|
}
|
2020-06-24 16:15:30 +00:00
|
|
|
}
|
2019-05-14 12:08:05 +00:00
|
|
|
|
2020-07-08 03:28:13 +00:00
|
|
|
sourceSets.all { set ->
|
2021-03-22 10:11:46 +00:00
|
|
|
if (set.name.startsWith("full")) {
|
|
|
|
set.dependencies {
|
|
|
|
implementation fileTree("libs")
|
|
|
|
}
|
|
|
|
}
|
2020-06-24 16:15:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.all { task ->
|
2021-04-11 00:42:05 +00:00
|
|
|
if (((task.name.endsWith("Ndk") || task.name.startsWith("generateJsonModel") || task.name.startsWith("externalNativeBuild"))) && !(task.name.contains("Debug") || task.name.contains("Foss") || task.name.contains("Fdroid"))) {
|
2020-06-24 16:15:30 +00:00
|
|
|
task.enabled = false
|
|
|
|
}
|
|
|
|
if (task.name.contains("uploadCrashlyticsMappingFile")) {
|
|
|
|
enabled = false
|
|
|
|
}
|
2021-12-20 15:20:02 +00:00
|
|
|
if (disableCMakeRelWithDebInfo && task.name.contains("CMakeRelWithDebInfo") && !targetTask.contains("fdroid")) {
|
2021-11-15 18:04:57 +00:00
|
|
|
enabled = false
|
|
|
|
}
|
2020-06-24 16:15:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
applicationVariants.all { variant ->
|
|
|
|
variant.outputs.all { output ->
|
2022-03-15 16:16:10 +00:00
|
|
|
outputFileName = outputFileName.replace("TMessagesProj", "Nagram-v" + versionName + "(" + versionCode + ")").replace("-release", "")
|
2017-12-08 17:35:59 +00:00
|
|
|
}
|
2016-03-16 12:26:32 +00:00
|
|
|
}
|
|
|
|
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
2016-04-22 13:49:00 +00:00
|
|
|
|
2022-06-21 16:55:12 +00:00
|
|
|
def okHttpVersion = "5.0.0-alpha.9"
|
2022-08-17 09:09:53 +00:00
|
|
|
def fcmVersion = "23.0.7"
|
|
|
|
def crashlyticsVersion = "18.2.12"
|
|
|
|
def playCoreVersion = "1.10.3"
|
2021-03-14 15:15:57 +00:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
2021-12-20 15:57:51 +00:00
|
|
|
implementation "androidx.browser:browser:1.4.0"
|
2022-06-21 16:55:12 +00:00
|
|
|
implementation "androidx.core:core-ktx:1.8.0"
|
2021-03-31 19:29:44 +00:00
|
|
|
implementation "androidx.palette:palette-ktx:1.0.0"
|
|
|
|
implementation "androidx.viewpager:viewpager:1.0.0"
|
2021-08-07 09:28:34 +00:00
|
|
|
implementation "androidx.exifinterface:exifinterface:1.3.3"
|
2021-03-14 15:15:57 +00:00
|
|
|
implementation "androidx.interpolator:interpolator:1.0.0"
|
2021-03-31 19:29:44 +00:00
|
|
|
implementation "androidx.dynamicanimation:dynamicanimation:1.0.0"
|
|
|
|
implementation "androidx.multidex:multidex:2.0.1"
|
|
|
|
implementation "androidx.sharetarget:sharetarget:1.1.0"
|
2021-03-14 15:15:57 +00:00
|
|
|
|
2021-07-26 18:27:01 +00:00
|
|
|
compileOnly "org.checkerframework:checker-qual:3.16.0"
|
2021-03-31 19:29:44 +00:00
|
|
|
compileOnly "org.checkerframework:checker-compat-qual:2.5.5"
|
2021-03-14 15:15:57 +00:00
|
|
|
|
2021-03-31 19:29:44 +00:00
|
|
|
// don"t change this :)
|
2021-03-14 15:15:57 +00:00
|
|
|
//noinspection GradleDependency
|
2021-08-01 18:10:40 +00:00
|
|
|
implementation "com.googlecode.mp4parser:isoparser:1.0.6"
|
2021-03-14 15:15:57 +00:00
|
|
|
|
2021-09-21 00:21:16 +00:00
|
|
|
implementation "com.google.code.gson:gson:2.8.8"
|
2021-03-31 19:29:44 +00:00
|
|
|
implementation "org.osmdroid:osmdroid-android:6.1.10"
|
2022-05-08 17:58:05 +00:00
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.6.20"
|
2021-09-21 00:21:16 +00:00
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2"
|
2021-03-14 15:15:57 +00:00
|
|
|
|
|
|
|
implementation "com.squareup.okhttp3:okhttp:$okHttpVersion"
|
2021-09-21 00:21:16 +00:00
|
|
|
implementation 'dnsjava:dnsjava:3.4.1'
|
2021-03-31 19:29:44 +00:00
|
|
|
implementation "org.dizitart:nitrite:3.4.3"
|
2021-03-14 15:15:57 +00:00
|
|
|
|
2021-09-21 00:21:16 +00:00
|
|
|
implementation "cn.hutool:hutool-core:5.7.13"
|
|
|
|
implementation "cn.hutool:hutool-crypto:5.7.13"
|
2021-07-26 18:27:01 +00:00
|
|
|
implementation 'cn.hutool:hutool-http:5.7.5'
|
2021-09-21 00:21:16 +00:00
|
|
|
implementation "com.jakewharton:process-phoenix:2.1.2"
|
2021-03-14 15:15:57 +00:00
|
|
|
|
2021-07-26 18:27:01 +00:00
|
|
|
compileOnly 'org.yaml:snakeyaml:1.29'
|
|
|
|
fullImplementation 'org.yaml:snakeyaml:1.29'
|
2021-03-14 15:15:57 +00:00
|
|
|
|
|
|
|
implementation project(":openpgp-api")
|
|
|
|
|
|
|
|
compileOnly fileTree("libs")
|
|
|
|
|
|
|
|
compileOnly "com.google.firebase:firebase-messaging:$fcmVersion"
|
|
|
|
compileOnly "com.google.firebase:firebase-crashlytics:$crashlyticsVersion"
|
|
|
|
compileOnly "com.google.android.play:core:$playCoreVersion"
|
|
|
|
|
2022-08-17 13:27:36 +00:00
|
|
|
// TODO: Remove in nogcm vesion
|
|
|
|
implementation 'com.google.android.gms:play-services-maps:18.1.0'
|
|
|
|
implementation 'com.google.android.gms:play-services-location:20.0.0'
|
|
|
|
|
|
|
|
|
2021-03-14 15:15:57 +00:00
|
|
|
debugImplementation "com.google.firebase:firebase-messaging:$fcmVersion"
|
|
|
|
debugImplementation "com.google.firebase:firebase-crashlytics:$crashlyticsVersion"
|
|
|
|
debugImplementation "com.google.android.play:core:$playCoreVersion"
|
|
|
|
releaseImplementation "com.google.firebase:firebase-messaging:$fcmVersion"
|
|
|
|
releaseImplementation "com.google.firebase:firebase-crashlytics:$crashlyticsVersion"
|
|
|
|
releaseImplementation "com.google.android.play:core:$playCoreVersion"
|
|
|
|
|
2021-03-31 19:29:44 +00:00
|
|
|
testImplementation "junit:junit:4.13.2"
|
2021-07-26 19:40:08 +00:00
|
|
|
testImplementation "androidx.test:core:1.4.0"
|
|
|
|
testImplementation "org.robolectric:robolectric:4.5.1"
|
2021-03-14 15:15:57 +00:00
|
|
|
|
2022-08-17 09:09:53 +00:00
|
|
|
coreLibraryDesugaring "com.android.tools:desugar_jdk_libs:1.1.0"
|
2021-03-14 15:15:57 +00:00
|
|
|
|
|
|
|
}
|
2022-03-18 09:33:11 +00:00
|
|
|
dependencies {
|
|
|
|
// add for undo and redo
|
|
|
|
implementation 'org.lsposed.hiddenapibypass:hiddenapibypass:4.3'
|
2022-04-26 17:04:56 +00:00
|
|
|
// add splash screen
|
|
|
|
implementation("androidx.core:core-splashscreen:1.0.0-beta02")
|
2022-03-18 09:33:11 +00:00
|
|
|
}
|
2021-03-14 15:15:57 +00:00
|
|
|
|
2021-03-31 19:29:44 +00:00
|
|
|
apply plugin: "com.google.gms.google-services"
|
|
|
|
apply plugin: "com.google.firebase.crashlytics"
|
2020-06-24 16:15:30 +00:00
|
|
|
|
|
|
|
android {
|
|
|
|
|
|
|
|
tasks.all { task ->
|
2021-03-31 19:29:44 +00:00
|
|
|
if (task.name.startsWith("uploadCrashlyticsMappingFile")) {
|
2020-06-24 16:15:30 +00:00
|
|
|
task.enabled = false
|
2021-03-31 19:29:44 +00:00
|
|
|
} else if (task.name.contains("Crashlytics") && task.name.contains("NoGcm")) {
|
2020-06-24 16:15:30 +00:00
|
|
|
task.enabled = false
|
2022-07-12 13:37:52 +00:00
|
|
|
} else if (task.name.endsWith("GoogleServices") && task.name.contains("NoGcm")) {
|
|
|
|
task.enabled = false
|
2020-06-24 16:15:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-27 03:46:36 +00:00
|
|
|
}
|