NekoX/TMessagesProj/build.gradle

408 lines
11 KiB
Groovy
Raw Normal View History

2020-06-24 18:15:30 +02:00
import cn.hutool.core.io.FileUtil
import cn.hutool.json.JSONObject
apply plugin: 'com.android.application'
2020-06-24 18:15:30 +02:00
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
2013-10-25 17:19:00 +02:00
2020-10-11 08:35:19 +02:00
def verName = "7.1.3-preview02"
def verCode = 75
2020-07-22 05:23:05 +02:00
2020-07-08 06:00:22 +02:00
def serviceAccountCredentialsFile = rootProject.file("service_account_credentials.json")
2020-07-22 05:23:05 +02:00
def beta = verName.contains("preview")
2020-07-08 06:00:22 +02:00
if (serviceAccountCredentialsFile.isFile()) {
2020-07-22 05:23:05 +02:00
setupPlay(beta)
2020-07-08 06:00:22 +02:00
play.serviceAccountCredentials = serviceAccountCredentialsFile
} else if (System.getenv().containsKey("ANDROID_PUBLISHER_CREDENTIALS")) {
2020-07-22 05:23:05 +02:00
setupPlay(beta)
2020-07-08 06:00:22 +02:00
}
2020-07-22 05:23:05 +02:00
void setupPlay(boolean beta) {
2020-07-08 06:00:22 +02:00
apply plugin: 'com.github.triplet.play'
play {
2020-07-22 05:23:05 +02:00
track = beta ? "beta" : "production"
2020-07-08 06:00:22 +02:00
defaultToAppBundles = true
userFraction = 1
}
2020-07-22 05:23:05 +02:00
2020-07-08 06:00:22 +02:00
}
2016-10-11 13:57:01 +02:00
configurations {
compile.exclude module: 'support-v4'
}
2020-09-14 06:25:40 +02:00
def okHttpVersion = '4.9.0'
2020-10-01 06:30:37 +02:00
def fcmVersion = '20.3.0'
def crashlyticsVersion = '17.2.2'
def playCoreVersion = '1.8.2'
2020-06-24 18:15:30 +02:00
buildscript {
repositories {
jcenter()
mavenCentral()
google()
}
dependencies {
2020-10-04 12:14:58 +02:00
classpath 'cn.hutool:hutool-all:5.4.3'
2020-06-24 18:15:30 +02:00
}
}
2020-07-08 05:28:13 +02:00
repositories {
2020-07-19 09:44:11 +02:00
jcenter()
2020-07-08 05:28:13 +02:00
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}
2013-10-25 17:19:00 +02:00
dependencies {
2020-06-24 18:15:30 +02:00
2020-10-09 19:35:17 +02:00
implementation 'androidx.core:core-ktx:1.5.0-alpha04'
2020-07-22 05:23:05 +02:00
implementation 'androidx.palette:palette-ktx:1.0.0'
implementation 'androidx.viewpager:viewpager:1.0.0'
2020-09-14 06:25:40 +02:00
implementation 'androidx.exifinterface:exifinterface:1.3.0'
2020-06-24 18:15:30 +02:00
implementation "androidx.interpolator:interpolator:1.0.0"
2020-04-24 11:21:58 +02:00
implementation 'androidx.dynamicanimation:dynamicanimation:1.0.0'
2020-07-26 10:03:38 +02:00
implementation 'androidx.multidex:multidex:2.0.1'
implementation "androidx.sharetarget:sharetarget:1.0.0"
2019-05-14 14:08:05 +02:00
2020-06-25 16:01:18 +02:00
// replace zxing with latest
// TODO: fix problem with android L
2020-10-01 06:30:37 +02:00
implementation 'com.google.zxing:core:3.4.1'
2020-06-25 16:01:18 +02:00
2020-10-04 12:14:58 +02:00
compileOnly 'org.checkerframework:checker-qual:3.7.0'
compileOnly 'org.checkerframework:checker-compat-qual:2.5.5'
2020-07-02 11:08:56 +02:00
// don't change this :)
//noinspection GradleDependency
implementation 'com.googlecode.mp4parser:isoparser:1.0.6'
2020-01-18 12:57:04 +01:00
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'org.osmdroid:osmdroid-android:6.1.8'
2020-09-14 06:25:40 +02:00
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.4.10'
2020-08-13 07:38:51 +02:00
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9'
2020-06-24 18:15:30 +02:00
implementation "com.squareup.okhttp3:okhttp:$okHttpVersion"
implementation "com.squareup.okhttp3:okhttp-dnsoverhttps:$okHttpVersion"
2020-10-01 06:30:37 +02:00
implementation 'dnsjava:dnsjava:3.3.0'
2020-06-24 18:15:30 +02:00
implementation 'org.dizitart:nitrite:3.4.2'
2020-10-01 06:30:37 +02:00
implementation 'cn.hutool:hutool-core:5.4.4'
implementation 'cn.hutool:hutool-crypto:5.4.4'
2020-06-24 18:15:30 +02:00
2020-07-19 09:44:11 +02:00
implementation project(":openpgp-api")
2020-06-24 18:15:30 +02:00
compileOnly files('libs/libv2ray.aar')
compileOnly "com.google.firebase:firebase-messaging:$fcmVersion"
compileOnly "com.google.firebase:firebase-crashlytics:$crashlyticsVersion"
compileOnly "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"
2020-08-14 18:58:22 +02:00
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.0.10'
}
2020-06-24 18:15:30 +02:00
task writeUpdateInfo {
def info = new JSONObject()
info.set("version", verName)
info.set("versionCode", verCode)
info.set("defaultFlavor", "full")
info.set("defaultApkName", "NekoX-full-arm64-v8a-release.apk.xz")
FileUtil.writeUtf8String(info.toStringPretty(), new File("build/update.json"))
2019-06-11 07:56:33 +02:00
}
2020-06-24 18:15:30 +02:00
tasks.findByName("preBuild").finalizedBy(writeUpdateInfo)
2013-10-25 17:19:00 +02:00
android {
2020-07-26 10:03:38 +02:00
compileSdkVersion 30
2020-08-22 01:59:49 +02:00
buildToolsVersion '30.0.2'
2020-06-24 18:15:30 +02:00
ndkVersion rootProject.ext.ndkVersion
defaultConfig.applicationId = "nekox.messenger"
2017-12-08 18:35:59 +01:00
2020-06-24 18:15:30 +02:00
defaultConfig {
minSdkVersion 16
//noinspection OldTargetApi
targetSdkVersion 28
2015-10-29 18:10:07 +01:00
2020-06-24 18:15:30 +02:00
versionName verName
versionCode verCode
def appId = null
def appHash = null
//obtain your own keys at https://core.telegram.org/api/obtaining_api_id
if (project.rootProject.file('local.properties').exists()) {
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
appId = properties.getProperty("TELEGRAM_APP_ID") ?: System.getenv("TELEGRAM_APP_ID")
appHash = properties.getProperty("TELEGRAM_APP_HASH") ?: System.getenv("TELEGRAM_APP_HASH")
}
buildConfigField 'int', 'APP_ID', appId != null ? appId : "1391584"
buildConfigField 'String', 'APP_HASH', "\"" + (appHash != null ? appHash : "355c91550b0d658cfb7ff89dcf91a08c") + "\""
externalNativeBuild {
cmake {
version '3.10.2'
arguments '-DANDROID_STL=c++_static', '-DANDROID_PLATFORM=android-16', "-j=16"
2020-06-24 18:15:30 +02:00
}
}
}
bundle {
language {
enableSplit = false
}
}
2016-10-11 13:57:01 +02:00
externalNativeBuild {
2020-09-30 15:48:47 +02:00
cmake {
path 'jni/CMakeLists.txt'
2016-10-11 13:57:01 +02:00
}
}
2018-07-30 04:07:02 +02:00
lintOptions {
disable 'MissingTranslation'
disable 'ExtraTranslation'
2019-09-10 12:56:11 +02:00
disable 'BlockedPrivateApi'
2018-07-30 04:07:02 +02:00
}
2020-06-24 18:15:30 +02:00
packagingOptions {
exclude '/fabric/**'
exclude '/META-INF/*.version'
exclude '/META-INF/*.kotlin_module'
exclude '/builddef.lst'
exclude '/*.txt'
}
2017-03-31 01:58:05 +02:00
dexOptions {
jumboMode = true
}
2015-01-02 23:15:07 +01:00
compileOptions {
2018-08-27 10:33:11 +02:00
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
2020-08-14 18:58:22 +02:00
coreLibraryDesugaringEnabled true
2015-01-02 23:15:07 +01:00
}
2020-06-24 18:15:30 +02:00
kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8.toString()
}
2013-12-20 20:25:49 +01:00
signingConfigs {
2020-01-28 08:01:42 +01:00
def keystorePwd = null
def alias = null
def pwd = null
2020-06-24 18:15:30 +02:00
Properties properties
2020-01-28 08:01:42 +01:00
if (project.rootProject.file('local.properties').exists()) {
2020-06-24 18:15:30 +02:00
properties = new Properties()
2020-01-28 08:01:42 +01:00
properties.load(project.rootProject.file('local.properties').newDataInputStream())
2020-06-24 18:15:30 +02:00
} else {
def base64 = System.getenv("LOCAL_PROPERTIES")
if (base64 != null && !base64.isBlank()) {
properties = new Properties()
properties.load(new ByteArrayInputStream(Base64.decoder.decode(base64)))
}
2020-01-28 08:01:42 +01:00
}
2020-06-24 18:15:30 +02: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")
2019-06-11 07:56:33 +02:00
release {
2020-06-24 18:15:30 +02:00
storeFile project.file('release.keystore')
storePassword keystorePwd
keyAlias alias
keyPassword pwd
2013-12-20 20:25:49 +01:00
}
2020-06-24 18:15:30 +02:00
2013-12-20 20:25:49 +01:00
}
buildTypes {
debug {
debuggable true
2014-11-10 12:05:22 +01:00
jniDebuggable true
2020-04-24 11:21:58 +02:00
multiDexEnabled true
2020-06-24 18:15:30 +02:00
}
2019-12-31 14:08:08 +01:00
2020-06-24 18:15:30 +02:00
releaseNoGcm {
2019-01-23 18:03:33 +01:00
debuggable false
jniDebuggable false
minifyEnabled true
2020-06-24 18:15:30 +02:00
shrinkResources true
2020-09-03 17:37:42 +02:00
multiDexEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2020-07-19 09:44:11 +02:00
matchingFallbacks = ['debug']
2020-07-27 06:49:42 +02:00
signingConfig signingConfigs.release
2019-01-23 18:03:33 +01:00
}
2013-12-20 20:25:49 +01:00
release {
2020-09-03 17:37:42 +02:00
debuggable false
jniDebuggable false
minifyEnabled true
shrinkResources true
multiDexEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
matchingFallbacks = ['debug']
signingConfig signingConfigs.release
2020-06-24 18:15:30 +02:00
}
foss {
2020-09-03 17:37:42 +02:00
debuggable false
jniDebuggable false
minifyEnabled true
shrinkResources true
multiDexEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2020-08-10 12:20:22 +02:00
matchingFallbacks = ['debug']
2020-09-03 17:37:42 +02:00
signingConfig signingConfigs.release
2013-12-20 20:25:49 +01:00
}
}
2020-07-08 06:00:22 +02:00
sourceSets {
2014-11-21 20:36:21 +01:00
2020-07-08 06:00:22 +02:00
main {
2020-10-04 12:14:58 +02:00
jni.srcDirs = []
2020-07-08 06:00:22 +02:00
}
2020-06-24 18:15:30 +02:00
2020-07-08 06:00:22 +02:00
debug {
jniLibs.srcDir 'src/main/libs'
}
2020-06-24 18:15:30 +02:00
2020-07-08 06:00:22 +02:00
releaseNoGcm {
jniLibs.srcDir 'src/main/libs'
}
2020-06-24 18:15:30 +02:00
2020-07-08 06:00:22 +02:00
release {
jniLibs.srcDir 'src/main/libs'
manifest.srcFile 'src/gservcies/AndroidManifest.xml'
}
2020-06-24 18:15:30 +02:00
2020-07-08 06:00:22 +02:00
foss {
jni.srcDirs = ['./jni/']
}
2020-06-24 18:15:30 +02:00
2020-07-08 06:00:22 +02:00
}
2020-06-24 18:15:30 +02:00
2020-07-08 06:00:22 +02:00
splits.abi {
2017-12-08 18:35:59 +01:00
2020-07-08 06:00:22 +02:00
enable true
2020-08-16 03:08:56 +02:00
universalApk false
2016-03-16 13:26:32 +01:00
2020-06-24 18:15:30 +02:00
}
2020-03-30 14:00:09 +02:00
2020-06-24 18:15:30 +02:00
flavorDimensions "version"
2019-05-14 14:08:05 +02:00
2020-06-24 18:15:30 +02:00
productFlavors {
mini {
versionNameSuffix '-mini'
}
2020-07-08 05:28:13 +02:00
miniNoEmoji {
versionNameSuffix '-mini-no-emoji'
}
miniAppleEmoji {
versionNameSuffix '-mini-apple-emoji'
}
miniTwitterEmoji {
versionNameSuffix '-mini-twitter-emoji'
}
2020-08-16 03:08:56 +02:00
full {
2020-08-20 11:08:26 +02:00
}
fullNoEmoji {
versionNameSuffix '-full-no-emoji'
2020-07-08 05:28:13 +02:00
}
fullAppleEmoji {
versionNameSuffix '-full-apple-emoji'
}
fullTwitterEmoji {
versionNameSuffix '-full-twitter-emoji'
}
2020-06-24 18:15:30 +02:00
}
2019-05-14 14:08:05 +02:00
2020-07-08 05:28:13 +02:00
sourceSets.all { set ->
2020-10-11 08:35:19 +02:00
if (set.name.startsWith("full")) {
set.dependencies {
implementation files('libs/libv2ray.aar','libs/ss-rust-release.aar','libs/ssr-libev-release.aar')
}
}
2020-07-08 05:28:13 +02:00
if (set.name.matches("(mini|full).*")) {
if (set.name.contains("Apple")) {
2020-08-16 03:08:56 +02:00
set.assets.srcDirs = ["src/main/assets", "src/emojis/apple"]
2020-07-08 05:28:13 +02:00
} else if (set.name.contains("Twitter")) {
2020-08-16 03:08:56 +02:00
set.assets.srcDirs = ["src/main/assets", "src/emojis/twitter"]
2020-07-08 06:00:22 +02:00
} else if (!set.name.contains("NoEmoji")) {
2020-07-08 05:28:13 +02:00
set.assets.srcDirs = ["src/main/assets", "src/emojis/blob"]
}
2020-06-24 18:15:30 +02:00
}
}
tasks.all { task ->
if (((task.name.endsWith('Ndk') || task.name.startsWith('generateJsonModel') || task.name.startsWith('externalNativeBuild'))) && !task.name.contains("Foss")) {
task.enabled = false
}
if (task.name.contains("uploadCrashlyticsMappingFile")) {
enabled = false
}
}
applicationVariants.all { variant ->
variant.outputs.all { output ->
2020-07-08 05:28:13 +02:00
outputFileName = outputFileName.replace("TMessagesProj", "NekoX")
2017-12-08 18:35:59 +01:00
}
2016-03-16 13:26:32 +01:00
}
2013-10-25 17:19:00 +02:00
}
2016-04-22 15:49:00 +02:00
2020-06-24 18:15:30 +02: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
} else if (((task.name.contains('Crashlytics'))) && !task.name.endsWith("Release")) {
task.enabled = false
} else if (((task.name.endsWith('GoogleServices'))) && !task.name.endsWith("ReleaseGoogleServices")) {
task.enabled = false
}
}
}