269 lines
7.6 KiB
Groovy
269 lines
7.6 KiB
Groovy
apply plugin: 'com.android.application'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
jcenter()
|
|
}
|
|
|
|
configurations {
|
|
compile.exclude module: 'support-v4'
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly 'org.checkerframework:checker-qual:2.5.2'
|
|
compileOnly 'org.checkerframework:checker-compat-qual:2.5.0'
|
|
implementation 'com.google.firebase:firebase-core:16.0.6'
|
|
implementation 'com.google.firebase:firebase-messaging:17.3.4'
|
|
implementation 'com.google.firebase:firebase-config:16.1.3'
|
|
implementation 'com.google.android.gms:play-services-maps:16.0.0'
|
|
implementation 'com.google.android.gms:play-services-auth:16.0.1'
|
|
implementation 'com.google.android.gms:play-services-vision:16.2.0'
|
|
implementation 'com.google.android.gms:play-services-wallet:16.0.1'
|
|
implementation 'com.google.android.gms:play-services-wearable:16.0.1'
|
|
implementation 'com.android.support:support-core-ui:28.0.0'
|
|
implementation 'com.android.support:support-compat:28.0.0'
|
|
implementation 'com.android.support:support-core-utils:28.0.0'
|
|
implementation 'com.android.support:support-v13:28.0.0'
|
|
implementation 'com.android.support:palette-v7:28.0.0'
|
|
implementation 'com.android.support:exifinterface:28.0.0'
|
|
implementation 'net.hockeyapp.android:HockeySDK:5.1.1'
|
|
implementation 'com.googlecode.mp4parser:isoparser:1.0.6'
|
|
implementation 'com.stripe:stripe-android:2.0.2'
|
|
}
|
|
|
|
android {
|
|
compileSdkVersion 28
|
|
buildToolsVersion '28.0.3'
|
|
|
|
defaultConfig.applicationId = "org.telegram.messenger"
|
|
|
|
sourceSets.main.jniLibs.srcDirs = ['./jni/']
|
|
|
|
externalNativeBuild {
|
|
ndkBuild {
|
|
path "jni/Android.mk"
|
|
}
|
|
}
|
|
|
|
lintOptions {
|
|
disable 'MissingTranslation'
|
|
disable 'ExtraTranslation'
|
|
}
|
|
|
|
dexOptions {
|
|
jumboMode = true
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
signingConfigs {
|
|
debug {
|
|
storeFile file("config/release.keystore")
|
|
storePassword RELEASE_STORE_PASSWORD
|
|
keyAlias RELEASE_KEY_ALIAS
|
|
keyPassword RELEASE_KEY_PASSWORD
|
|
}
|
|
|
|
release {
|
|
storeFile file("config/release.keystore")
|
|
storePassword RELEASE_STORE_PASSWORD
|
|
keyAlias RELEASE_KEY_ALIAS
|
|
keyPassword RELEASE_KEY_PASSWORD
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
debug {
|
|
debuggable true
|
|
jniDebuggable true
|
|
signingConfig signingConfigs.debug
|
|
applicationIdSuffix ".beta"
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
|
|
HA {
|
|
debuggable false
|
|
jniDebuggable false
|
|
signingConfig signingConfigs.debug
|
|
applicationIdSuffix ".beta"
|
|
minifyEnabled true
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
|
|
release {
|
|
debuggable false
|
|
jniDebuggable false
|
|
signingConfig signingConfigs.release
|
|
minifyEnabled true
|
|
shrinkResources false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
|
|
foss {
|
|
debuggable false
|
|
jniDebuggable false
|
|
signingConfig signingConfigs.release
|
|
}
|
|
}
|
|
|
|
defaultConfig.versionCode = 1478
|
|
|
|
sourceSets.debug {
|
|
manifest.srcFile 'config/debug/AndroidManifest.xml'
|
|
}
|
|
|
|
sourceSets.HA {
|
|
manifest.srcFile 'config/debug/AndroidManifest.xml'
|
|
}
|
|
|
|
sourceSets.release {
|
|
manifest.srcFile 'config/release/AndroidManifest.xml'
|
|
}
|
|
|
|
sourceSets.foss {
|
|
manifest.srcFile 'config/foss/AndroidManifest.xml'
|
|
}
|
|
|
|
flavorDimensions "minApi"
|
|
|
|
productFlavors {
|
|
armv7 {
|
|
ndk {
|
|
abiFilters "armeabi-v7a"
|
|
}
|
|
ext {
|
|
abiVersionCode = 1
|
|
}
|
|
}
|
|
x86 {
|
|
ndk {
|
|
abiFilters "x86"
|
|
}
|
|
ext {
|
|
abiVersionCode = 2
|
|
}
|
|
}
|
|
armv7_SDK23 {
|
|
ndk {
|
|
abiFilters "armeabi-v7a"
|
|
}
|
|
sourceSets.debug {
|
|
manifest.srcFile 'config/debug/AndroidManifest_SDK23.xml'
|
|
}
|
|
sourceSets.release {
|
|
manifest.srcFile 'config/release/AndroidManifest_SDK23.xml'
|
|
}
|
|
minSdkVersion 23
|
|
ext {
|
|
abiVersionCode = 3
|
|
}
|
|
}
|
|
x86_SDK23 {
|
|
ndk {
|
|
abiFilters "x86"
|
|
}
|
|
sourceSets.debug {
|
|
manifest.srcFile 'config/debug/AndroidManifest_SDK23.xml'
|
|
}
|
|
sourceSets.release {
|
|
manifest.srcFile 'config/release/AndroidManifest_SDK23.xml'
|
|
}
|
|
minSdkVersion 23
|
|
ext {
|
|
abiVersionCode = 4
|
|
}
|
|
}
|
|
arm64 {
|
|
ndk {
|
|
abiFilters "arm64-v8a"
|
|
}
|
|
ext {
|
|
abiVersionCode = 5
|
|
}
|
|
}
|
|
x64 {
|
|
ndk {
|
|
abiFilters "x86_64"
|
|
}
|
|
ext {
|
|
abiVersionCode = 6
|
|
}
|
|
}
|
|
arm64_SDK23 {
|
|
ndk {
|
|
abiFilters "arm64-v8a"
|
|
}
|
|
sourceSets.debug {
|
|
manifest.srcFile 'config/debug/AndroidManifest_SDK23.xml'
|
|
}
|
|
sourceSets.release {
|
|
manifest.srcFile 'config/release/AndroidManifest_SDK23.xml'
|
|
}
|
|
minSdkVersion 23
|
|
ext {
|
|
abiVersionCode = 7
|
|
}
|
|
}
|
|
x64_SDK23 {
|
|
ndk {
|
|
abiFilters "x86_64"
|
|
}
|
|
sourceSets.debug {
|
|
manifest.srcFile 'config/debug/AndroidManifest_SDK23.xml'
|
|
}
|
|
sourceSets.release {
|
|
manifest.srcFile 'config/release/AndroidManifest_SDK23.xml'
|
|
}
|
|
minSdkVersion 23
|
|
ext {
|
|
abiVersionCode = 8
|
|
}
|
|
}
|
|
afat {
|
|
sourceSets.debug {
|
|
manifest.srcFile 'config/debug/AndroidManifest_SDK23.xml'
|
|
}
|
|
sourceSets.release {
|
|
manifest.srcFile 'config/release/AndroidManifest_SDK23.xml'
|
|
}
|
|
ext {
|
|
abiVersionCode = 0
|
|
}
|
|
}
|
|
}
|
|
|
|
applicationVariants.all { variant ->
|
|
variant.outputs.all { output ->
|
|
output.processManifest.doLast {
|
|
def abiVersion = variant.productFlavors.get(0).abiVersionCode
|
|
String manifestPath = "$manifestOutputDirectory/AndroidManifest.xml"
|
|
def manifestContent = file(manifestPath).getText()
|
|
manifestContent = manifestContent.replace(String.format('android:versionCode="%d"', defaultConfig.versionCode), String.format('android:versionCode="%s"', defaultConfig.versionCode * 10 + abiVersion))
|
|
file(manifestPath).write(manifestContent)
|
|
}
|
|
}
|
|
}
|
|
|
|
defaultConfig {
|
|
minSdkVersion 16
|
|
targetSdkVersion 27
|
|
versionName "5.2.1"
|
|
|
|
vectorDrawables.generatedDensities = ['mdpi', 'hdpi', 'xhdpi', 'xxhdpi']
|
|
|
|
externalNativeBuild {
|
|
ndkBuild {
|
|
arguments "NDK_APPLICATION_MK:=jni/Application.mk", "APP_PLATFORM:=android-16", "-j8"
|
|
abiFilters "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
apply plugin: 'com.google.gms.google-services'
|