2021-02-18 02:32:07 +00:00
|
|
|
import cn.hutool.core.util.RuntimeUtil
|
|
|
|
|
2014-07-02 22:39:05 +00:00
|
|
|
apply plugin: 'com.android.application'
|
2020-06-24 16:15:30 +00:00
|
|
|
apply plugin: 'kotlin-android'
|
2013-10-25 15:19:00 +00:00
|
|
|
|
2021-03-01 12:22:25 +00:00
|
|
|
def verName = "7.5.0-rc04"
|
|
|
|
def verCode = 200 + 3 * 3
|
2021-02-18 02:32:07 +00:00
|
|
|
|
|
|
|
if (System.getenv("DEBUG_BUILD") == "true") {
|
|
|
|
verName += "-" + RuntimeUtil.execForStr("git log --pretty=format:'%h' -n 1)")
|
|
|
|
}
|
|
|
|
|
2021-02-01 17:24:58 +00:00
|
|
|
|
2021-03-01 12:22:25 +00:00
|
|
|
def officialVer = "7.5.0"
|
|
|
|
def officialCode = 2246
|
2020-07-22 03:23:05 +00:00
|
|
|
|
2020-07-08 04:00:22 +00:00
|
|
|
def serviceAccountCredentialsFile = rootProject.file("service_account_credentials.json")
|
|
|
|
|
2020-07-22 03:23:05 +00:00
|
|
|
def beta = verName.contains("preview")
|
|
|
|
|
2020-07-08 04:00:22 +00:00
|
|
|
if (serviceAccountCredentialsFile.isFile()) {
|
2020-07-22 03:23:05 +00:00
|
|
|
setupPlay(beta)
|
2020-07-08 04:00:22 +00:00
|
|
|
play.serviceAccountCredentials = serviceAccountCredentialsFile
|
|
|
|
} else if (System.getenv().containsKey("ANDROID_PUBLISHER_CREDENTIALS")) {
|
2020-07-22 03:23:05 +00:00
|
|
|
setupPlay(beta)
|
2020-07-08 04:00:22 +00:00
|
|
|
}
|
|
|
|
|
2020-07-22 03:23:05 +00:00
|
|
|
void setupPlay(boolean beta) {
|
2020-07-08 04:00:22 +00:00
|
|
|
apply plugin: 'com.github.triplet.play'
|
|
|
|
play {
|
2020-07-22 03:23:05 +00:00
|
|
|
track = beta ? "beta" : "production"
|
2020-07-08 04:00:22 +00:00
|
|
|
defaultToAppBundles = true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-11 11:57:01 +00:00
|
|
|
configurations {
|
|
|
|
compile.exclude module: 'support-v4'
|
|
|
|
}
|
|
|
|
|
2021-02-28 14:37:30 +00:00
|
|
|
def keystorePwd = null
|
|
|
|
def alias = null
|
|
|
|
def pwd = null
|
|
|
|
|
|
|
|
Properties properties
|
|
|
|
def base64 = System.getenv("LOCAL_PROPERTIES")
|
|
|
|
if (base64 != null && !base64.isBlank()) {
|
|
|
|
properties = new Properties()
|
|
|
|
properties.load(new ByteArrayInputStream(Base64.decoder.decode(base64)))
|
|
|
|
} else if (project.rootProject.file('local.properties').exists()) {
|
|
|
|
properties = new Properties()
|
|
|
|
properties.load(project.rootProject.file('local.properties').newDataInputStream())
|
|
|
|
}
|
|
|
|
|
|
|
|
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")
|
|
|
|
|
|
|
|
def targetAbi = ""
|
|
|
|
if (!gradle.startParameter.taskNames.isEmpty()) {
|
|
|
|
if (gradle.startParameter.taskNames.size == 1) {
|
|
|
|
def targetTask = gradle.startParameter.taskNames[0].toLowerCase()
|
|
|
|
if (targetTask.contains("arm64")) {
|
|
|
|
targetAbi = "arm64"
|
|
|
|
} else if (targetTask.contains("arm")) {
|
|
|
|
targetAbi = "arm"
|
2021-02-28 15:50:19 +00:00
|
|
|
verCode -= 1
|
2021-02-28 14:37:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-31 17:28:28 +00:00
|
|
|
def okHttpVersion = '5.0.0-alpha.2'
|
2020-12-23 10:52:32 +00:00
|
|
|
def fcmVersion = '21.0.1'
|
2021-01-28 12:31:12 +00:00
|
|
|
def crashlyticsVersion = '17.3.1'
|
2021-03-05 09:01:48 +00:00
|
|
|
def playCoreVersion = '1.10.0'
|
2020-06-24 16:15:30 +00:00
|
|
|
|
2013-10-25 15:19:00 +00:00
|
|
|
dependencies {
|
2020-06-24 16:15:30 +00:00
|
|
|
|
2021-01-07 07:25:06 +00:00
|
|
|
implementation "androidx.browser:browser:1.3.0"
|
2021-02-25 04:58:04 +00:00
|
|
|
implementation 'androidx.core:core-ktx:1.5.0-beta02'
|
2020-07-22 03:23:05 +00:00
|
|
|
implementation 'androidx.palette:palette-ktx:1.0.0'
|
2020-01-11 13:39:02 +00:00
|
|
|
implementation 'androidx.viewpager:viewpager:1.0.0'
|
2020-12-08 14:05:46 +00:00
|
|
|
implementation 'androidx.exifinterface:exifinterface:1.3.2'
|
2020-06-24 16:15:30 +00:00
|
|
|
implementation "androidx.interpolator:interpolator:1.0.0"
|
2020-04-24 09:21:58 +00:00
|
|
|
implementation 'androidx.dynamicanimation:dynamicanimation:1.0.0'
|
2020-07-26 08:03:38 +00:00
|
|
|
implementation 'androidx.multidex:multidex:2.0.1'
|
2021-01-17 04:52:39 +00:00
|
|
|
implementation 'androidx.sharetarget:sharetarget:1.1.0'
|
2019-05-14 12:08:05 +00:00
|
|
|
|
2021-03-05 09:01:48 +00:00
|
|
|
compileOnly 'org.checkerframework:checker-qual:3.11.0'
|
2020-06-27 05:36:00 +00:00
|
|
|
compileOnly 'org.checkerframework:checker-compat-qual:2.5.5'
|
2020-07-02 09:08:56 +00:00
|
|
|
|
|
|
|
// don't change this :)
|
|
|
|
//noinspection GradleDependency
|
|
|
|
implementation 'com.googlecode.mp4parser:isoparser:1.0.6'
|
|
|
|
|
2020-01-18 11:57:04 +00:00
|
|
|
implementation 'com.google.code.gson:gson:2.8.6'
|
2021-01-31 17:28:28 +00:00
|
|
|
implementation 'org.osmdroid:osmdroid-android:6.1.10'
|
2021-02-28 02:26:20 +00:00
|
|
|
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.31'
|
2021-03-05 09:01:48 +00:00
|
|
|
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.3'
|
2020-06-24 16:15:30 +00:00
|
|
|
|
|
|
|
implementation "com.squareup.okhttp3:okhttp:$okHttpVersion"
|
2021-02-21 01:26:20 +00:00
|
|
|
implementation 'dnsjava:dnsjava:3.3.1'
|
2020-12-29 13:41:11 +00:00
|
|
|
implementation 'org.dizitart:nitrite:3.4.3'
|
2020-06-24 16:15:30 +00:00
|
|
|
|
2021-03-01 12:22:25 +00:00
|
|
|
implementation 'cn.hutool:hutool-core:5.5.9'
|
|
|
|
implementation 'cn.hutool:hutool-crypto:5.5.9'
|
|
|
|
implementation 'cn.hutool:hutool-http:5.5.9'
|
2020-06-24 16:15:30 +00:00
|
|
|
|
2021-02-23 02:30:38 +00:00
|
|
|
implementation 'org.yaml:snakeyaml:1.28'
|
2020-11-28 07:39:49 +00:00
|
|
|
implementation 'com.jakewharton:process-phoenix:2.0.0'
|
|
|
|
|
2020-07-19 07:44:11 +00:00
|
|
|
implementation project(":openpgp-api")
|
|
|
|
|
2021-02-25 04:58:04 +00:00
|
|
|
compileOnly fileTree("libs")
|
|
|
|
|
2020-06-24 16:15:30 +00:00
|
|
|
compileOnly "com.google.firebase:firebase-messaging:$fcmVersion"
|
2020-12-24 16:37:16 +00:00
|
|
|
compileOnly "com.google.firebase:firebase-crashlytics:$crashlyticsVersion"
|
2020-06-24 16:15:30 +00:00
|
|
|
compileOnly "com.google.android.play:core:$playCoreVersion"
|
|
|
|
|
2020-12-23 10:52:32 +00:00
|
|
|
debugImplementation "com.google.firebase:firebase-messaging:$fcmVersion"
|
2020-12-24 16:37:16 +00:00
|
|
|
debugImplementation "com.google.firebase:firebase-crashlytics:$crashlyticsVersion"
|
2020-12-23 10:52:32 +00:00
|
|
|
debugImplementation "com.google.android.play:core:$playCoreVersion"
|
2020-06-24 16:15:30 +00:00
|
|
|
releaseImplementation "com.google.firebase:firebase-messaging:$fcmVersion"
|
2020-12-24 16:37:16 +00:00
|
|
|
releaseImplementation "com.google.firebase:firebase-crashlytics:$crashlyticsVersion"
|
2020-06-24 16:15:30 +00:00
|
|
|
releaseImplementation "com.google.android.play:core:$playCoreVersion"
|
2019-01-25 21:55:45 +00:00
|
|
|
|
2021-02-17 03:12:28 +00:00
|
|
|
testImplementation 'junit:junit:4.13.2'
|
2020-12-17 17:32:45 +00:00
|
|
|
testImplementation 'androidx.test:core:1.3.0'
|
2021-02-03 14:14:57 +00:00
|
|
|
testImplementation 'org.robolectric:robolectric:4.5.1'
|
2020-12-17 17:32:45 +00:00
|
|
|
|
2021-03-01 12:22:25 +00:00
|
|
|
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
|
2020-08-15 05:36:15 +00:00
|
|
|
|
2021-02-28 14:37:30 +00:00
|
|
|
if (!targetAbi.isBlank()) {
|
|
|
|
implementation project(":ss-rust")
|
|
|
|
implementation project(":ssr-libev")
|
2021-02-28 13:01:58 +00:00
|
|
|
}
|
2021-02-28 14:37:30 +00:00
|
|
|
|
2021-02-28 13:01:58 +00:00
|
|
|
}
|
|
|
|
|
2013-10-25 15:19:00 +00:00
|
|
|
android {
|
2020-07-26 08:03:38 +00:00
|
|
|
compileSdkVersion 30
|
2020-12-08 14:05:46 +00:00
|
|
|
buildToolsVersion '30.0.3'
|
2021-02-18 02:32:07 +00:00
|
|
|
ndkVersion rootProject.ext.ndkVersion
|
2020-06-24 16:15:30 +00:00
|
|
|
|
|
|
|
defaultConfig.applicationId = "nekox.messenger"
|
2017-12-08 17:35:59 +00:00
|
|
|
|
2021-02-28 07:08:33 +00:00
|
|
|
splits {
|
|
|
|
|
|
|
|
abi {
|
|
|
|
|
|
|
|
enable true
|
|
|
|
universalApk false
|
|
|
|
|
2021-02-28 13:01:58 +00:00
|
|
|
if (!targetAbi.isBlank()) {
|
|
|
|
if (targetAbi == "arm64") {
|
|
|
|
exclude 'x86', 'x86_64', 'armeabi-v7a'
|
|
|
|
} else if (targetAbi == "arm") {
|
|
|
|
exclude 'x86', 'x86_64', 'arm64-v8a'
|
|
|
|
}
|
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 {
|
|
|
|
minSdkVersion 16
|
2020-11-04 12:43:49 +00:00
|
|
|
//noinspection ExpiredTargetSdkVersion,OldTargetApi
|
2020-12-13 18:41:07 +00:00
|
|
|
targetSdkVersion 29
|
2015-10-29 17:10:07 +00:00
|
|
|
|
2020-06-24 16:15:30 +00:00
|
|
|
versionName verName
|
|
|
|
versionCode verCode
|
|
|
|
|
2021-01-16 16:25:30 +00:00
|
|
|
def appId = "1391584"
|
|
|
|
def appHash = "355c91550b0d658cfb7ff89dcf91a08c"
|
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
|
|
|
|
|
|
|
buildConfigField 'String', 'OFFICIAL_VERSION', "\"" + officialVer + "\""
|
|
|
|
buildConfigField 'int', 'OFFICIAL_VERSION_CODE', officialCode + ""
|
2021-01-16 16:25:30 +00:00
|
|
|
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 {
|
|
|
|
version '3.10.2'
|
|
|
|
arguments '-DANDROID_STL=c++_static', '-DANDROID_PLATFORM=android-16', "-j=16"
|
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 {
|
|
|
|
path 'jni/CMakeLists.txt'
|
2016-10-11 11:57:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-07-30 02:07:02 +00:00
|
|
|
lintOptions {
|
|
|
|
disable 'MissingTranslation'
|
|
|
|
disable 'ExtraTranslation'
|
2019-09-10 10:56:11 +00:00
|
|
|
disable 'BlockedPrivateApi'
|
2018-07-30 02:07:02 +00:00
|
|
|
}
|
|
|
|
|
2020-06-24 16:15:30 +00:00
|
|
|
packagingOptions {
|
|
|
|
|
|
|
|
exclude '/fabric/**'
|
|
|
|
exclude '/META-INF/*.version'
|
|
|
|
exclude '/META-INF/*.kotlin_module'
|
|
|
|
exclude '/builddef.lst'
|
|
|
|
exclude '/*.txt'
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-03-30 23:58:05 +00:00
|
|
|
dexOptions {
|
|
|
|
jumboMode = true
|
|
|
|
}
|
|
|
|
|
2015-01-02 22:15:07 +00:00
|
|
|
compileOptions {
|
2018-08-27 08:33:11 +00:00
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
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 {
|
|
|
|
jvmTarget = JavaVersion.VERSION_1_8.toString()
|
|
|
|
}
|
|
|
|
|
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 {
|
2020-06-24 16:15:30 +00:00
|
|
|
storeFile project.file('release.keystore')
|
|
|
|
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
|
2020-11-22 09:26:11 +00:00
|
|
|
jniDebuggable false
|
2020-04-24 09:21:58 +00:00
|
|
|
multiDexEnabled true
|
2020-11-22 02:57:43 +00:00
|
|
|
zipAlignEnabled true
|
2021-01-16 16:25:30 +00:00
|
|
|
signingConfig keystorePwd == null ? signingConfigs.debug : signingConfigs.release
|
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
|
2020-09-03 15:37:42 +00:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2021-02-28 18:11:49 +00:00
|
|
|
matchingFallbacks = ['release', 'debug']
|
2021-02-28 13:01:58 +00:00
|
|
|
signingConfig keystorePwd == null ? signingConfigs.debug : 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
|
2020-09-03 15:37:42 +00:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2021-02-28 18:11:49 +00:00
|
|
|
matchingFallbacks = ['release', 'debug']
|
2020-09-03 15:37:42 +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
|
2020-09-03 15:37:42 +00:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2021-02-28 18:11:49 +00:00
|
|
|
matchingFallbacks = ['release', 'debug']
|
2013-12-20 19:25:49 +00:00
|
|
|
}
|
2021-02-28 13:01:58 +00:00
|
|
|
|
|
|
|
fdroidArmRelease {
|
|
|
|
initWith foss
|
2021-02-28 18:11:49 +00:00
|
|
|
matchingFallbacks = ['release', 'debug']
|
2021-02-28 13:01:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fdroidArm64Release {
|
|
|
|
initWith foss
|
2021-02-28 18:11:49 +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-02-28 02:26:20 +00:00
|
|
|
jni {
|
|
|
|
srcDirs = []
|
|
|
|
}
|
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 {
|
|
|
|
srcDirs 'src/main/java', 'src/gservcies/java'
|
|
|
|
}
|
|
|
|
jniLibs {
|
|
|
|
srcDir 'src/main/libs'
|
|
|
|
}
|
|
|
|
manifest {
|
|
|
|
srcFile 'src/gservcies/AndroidManifest.xml'
|
|
|
|
}
|
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-02-28 02:26:20 +00:00
|
|
|
jniLibs {
|
|
|
|
srcDir 'src/main/libs'
|
|
|
|
}
|
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 {
|
|
|
|
srcDirs 'src/main/java', 'src/gservcies/java'
|
|
|
|
}
|
|
|
|
jniLibs {
|
|
|
|
srcDir 'src/main/libs'
|
|
|
|
}
|
|
|
|
manifest {
|
|
|
|
srcFile 'src/gservcies/AndroidManifest.xml'
|
|
|
|
}
|
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 {
|
|
|
|
srcDirs = ['./jni/']
|
|
|
|
}
|
2020-07-08 04:00:22 +00:00
|
|
|
}
|
2020-06-24 16:15:30 +00:00
|
|
|
|
2021-02-28 18:40:50 +00:00
|
|
|
fdroidArmRelease {
|
|
|
|
jni {
|
|
|
|
srcDirs = ['./jni/']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fdroidArm64Release {
|
|
|
|
jni {
|
|
|
|
srcDirs = ['./jni/']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
versionNameSuffix '-mini'
|
|
|
|
}
|
2021-01-03 07:13:57 +00:00
|
|
|
miniAppleEmoji {
|
|
|
|
versionNameSuffix '-mini'
|
|
|
|
}
|
2020-08-16 01:08:56 +00:00
|
|
|
full {
|
2020-11-04 12:43:49 +00:00
|
|
|
isDefault true
|
2020-08-20 09:08:26 +00:00
|
|
|
}
|
2021-01-03 07:13:57 +00:00
|
|
|
fullAppleEmoji {
|
|
|
|
versionNameSuffix '-full-apple-emoji'
|
|
|
|
}
|
2020-10-11 09:30:08 +00:00
|
|
|
fullPlay {
|
|
|
|
versionNameSuffix '-play'
|
2021-02-28 15:50:19 +00:00
|
|
|
versionCode verCode - 2
|
2020-10-11 09:30:08 +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 ->
|
2020-10-11 06:35:19 +00:00
|
|
|
if (set.name.startsWith("full")) {
|
|
|
|
set.dependencies {
|
2021-02-25 04:58:04 +00:00
|
|
|
implementation fileTree("libs")
|
2020-10-11 06:35:19 +00:00
|
|
|
}
|
|
|
|
}
|
2020-07-08 03:28:13 +00:00
|
|
|
if (set.name.matches("(mini|full).*")) {
|
2021-01-03 07:13:57 +00:00
|
|
|
if (set.name.contains("Apple")) {
|
2020-08-16 01:08:56 +00:00
|
|
|
set.assets.srcDirs = ["src/main/assets", "src/emojis/apple"]
|
2021-01-07 07:25:06 +00:00
|
|
|
/*} else if (set.name.contains("Twitter")) {
|
|
|
|
set.assets.srcDirs = ["src/main/assets", "src/emojis/twitter"]*/
|
2020-12-29 16:16:49 +00:00
|
|
|
} else {
|
2021-01-03 07:13:57 +00:00
|
|
|
set.assets.srcDirs = ["src/main/assets", "src/emojis/twitter"]
|
|
|
|
}
|
2020-06-24 16:15:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.all { task ->
|
2021-02-28 13:01:58 +00:00
|
|
|
if (((task.name.endsWith('Ndk') || task.name.startsWith('generateJsonModel') || task.name.startsWith('externalNativeBuild'))) && !(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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
applicationVariants.all { variant ->
|
|
|
|
variant.outputs.all { output ->
|
2020-07-08 03:28:13 +00:00
|
|
|
outputFileName = outputFileName.replace("TMessagesProj", "NekoX")
|
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
|
|
|
|
2020-06-24 16:15:30 +00:00
|
|
|
apply plugin: 'com.google.gms.google-services'
|
|
|
|
apply plugin: 'com.google.firebase.crashlytics'
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
|
|
|
tasks.all { task ->
|
|
|
|
if (task.name.startsWith('uploadCrashlyticsMappingFile')) {
|
|
|
|
task.enabled = false
|
2021-01-03 07:13:57 +00:00
|
|
|
} else if (task.name.contains('Crashlytics') && task.name.contains("NoGcm")) {
|
2020-06-24 16:15:30 +00:00
|
|
|
task.enabled = false
|
2021-01-03 07:13:57 +00:00
|
|
|
} else if (task.name.endsWith('GoogleServices') && task.name.contains("NoGcm")) {
|
2020-06-24 16:15:30 +00:00
|
|
|
task.enabled = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-28 07:08:33 +00:00
|
|
|
}
|