2014-07-02 22:39:05 +00:00
|
|
|
apply plugin: 'com.android.application'
|
2013-10-25 15:19:00 +00:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2018-07-30 02:07:02 +00:00
|
|
|
google()
|
|
|
|
jcenter()
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
|
2016-10-11 11:57:01 +00:00
|
|
|
configurations {
|
|
|
|
compile.exclude module: 'support-v4'
|
|
|
|
}
|
|
|
|
|
2019-05-14 12:08:05 +00:00
|
|
|
configurations.all {
|
|
|
|
exclude group: 'com.google.firebase', module: 'firebase-core'
|
|
|
|
}
|
|
|
|
|
2013-10-25 15:19:00 +00:00
|
|
|
dependencies {
|
2019-05-14 12:08:05 +00:00
|
|
|
implementation 'androidx.core:core:1.1.0-beta01'
|
|
|
|
implementation 'androidx.palette:palette:1.0.0'
|
2019-12-31 13:08:08 +00:00
|
|
|
implementation 'androidx.exifinterface:exifinterface:1.1.0'
|
2019-05-14 12:08:05 +00:00
|
|
|
|
2019-01-23 17:03:33 +00:00
|
|
|
compileOnly 'org.checkerframework:checker-qual:2.5.2'
|
2018-08-27 08:33:11 +00:00
|
|
|
compileOnly 'org.checkerframework:checker-compat-qual:2.5.0'
|
2019-12-31 13:08:08 +00:00
|
|
|
implementation 'com.google.firebase:firebase-messaging:20.1.0'
|
|
|
|
implementation 'com.google.firebase:firebase-config:19.1.0'
|
2019-07-18 13:01:39 +00:00
|
|
|
implementation 'com.google.android.gms:play-services-maps:17.0.0'
|
|
|
|
implementation 'com.google.android.gms:play-services-auth:17.0.0'
|
2019-01-23 17:03:33 +00:00
|
|
|
implementation 'com.google.android.gms:play-services-vision:16.2.0'
|
2019-07-18 13:01:39 +00:00
|
|
|
implementation 'com.google.android.gms:play-services-wallet:17.0.0'
|
|
|
|
implementation 'com.google.android.gms:play-services-wearable:17.0.0'
|
|
|
|
implementation 'com.google.android.gms:play-services-location:17.0.0'
|
2018-08-27 08:33:11 +00:00
|
|
|
implementation 'com.googlecode.mp4parser:isoparser:1.0.6'
|
|
|
|
implementation 'com.stripe:stripe-android:2.0.2'
|
2019-12-31 13:08:08 +00:00
|
|
|
implementation files('libs/libgsaverification-client.aar')
|
2019-06-11 05:56:33 +00:00
|
|
|
}
|
|
|
|
|
2013-10-25 15:19:00 +00:00
|
|
|
android {
|
2019-12-31 13:08:08 +00:00
|
|
|
compileSdkVersion 29
|
|
|
|
buildToolsVersion '29.0.2'
|
|
|
|
ndkVersion "20.0.5594570"
|
2017-12-08 17:35:59 +00:00
|
|
|
|
2019-06-11 05:42:45 +00:00
|
|
|
defaultConfig.applicationId = "tw.nekomimi.nekogram"
|
2015-10-29 17:10:07 +00:00
|
|
|
|
2016-10-11 11:57:01 +00:00
|
|
|
sourceSets.main.jniLibs.srcDirs = ['./jni/']
|
|
|
|
|
|
|
|
externalNativeBuild {
|
|
|
|
ndkBuild {
|
|
|
|
path "jni/Android.mk"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
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
|
2015-01-02 22:15:07 +00:00
|
|
|
}
|
2014-03-22 22:31:55 +00:00
|
|
|
|
2013-12-20 19:25:49 +00:00
|
|
|
signingConfigs {
|
2019-06-11 05:56:33 +00:00
|
|
|
Properties properties = new Properties()
|
|
|
|
properties.load(project.rootProject.file('local.properties').newDataInputStream())
|
|
|
|
release {
|
2015-11-26 21:04:02 +00:00
|
|
|
storeFile file("config/release.keystore")
|
2019-06-11 05:56:33 +00:00
|
|
|
storePassword properties.getProperty("RELEASE_STORE_PASSWORD")
|
|
|
|
keyAlias properties.getProperty("RELEASE_KEY_ALIAS")
|
|
|
|
keyPassword properties.getProperty("RELEASE_KEY_PASSWORD")
|
2013-12-20 19:25:49 +00:00
|
|
|
}
|
2019-06-11 05:56:33 +00:00
|
|
|
debug {
|
2014-03-22 22:31:55 +00:00
|
|
|
storeFile file("config/release.keystore")
|
2019-06-11 05:56:33 +00:00
|
|
|
storePassword properties.getProperty("RELEASE_STORE_PASSWORD")
|
|
|
|
keyAlias properties.getProperty("RELEASE_KEY_ALIAS")
|
|
|
|
keyPassword properties.getProperty("RELEASE_KEY_PASSWORD")
|
2013-12-20 19:25:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-11 05:56:33 +00:00
|
|
|
|
2013-12-20 19:25:49 +00:00
|
|
|
buildTypes {
|
|
|
|
debug {
|
|
|
|
debuggable true
|
2014-11-10 11:05:22 +00:00
|
|
|
jniDebuggable true
|
2013-12-20 19:25:49 +00:00
|
|
|
signingConfig signingConfigs.debug
|
2019-06-11 05:42:45 +00:00
|
|
|
//applicationIdSuffix ".beta"
|
2018-07-30 02:07:02 +00:00
|
|
|
minifyEnabled true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2013-12-20 19:25:49 +00:00
|
|
|
}
|
|
|
|
|
2019-12-31 13:08:08 +00:00
|
|
|
/*debugAsan {
|
|
|
|
debuggable true
|
|
|
|
jniDebuggable true
|
|
|
|
signingConfig signingConfigs.debug
|
|
|
|
applicationIdSuffix ".beta"
|
|
|
|
minifyEnabled true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
|
|
|
|
packagingOptions {
|
|
|
|
doNotStrip "**.so"
|
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
|
|
|
main {
|
|
|
|
jniLibs {
|
|
|
|
srcDir {
|
|
|
|
'jniLibs'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
resources {
|
|
|
|
srcDir {
|
|
|
|
'jniRes'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}*/
|
|
|
|
|
2019-03-03 20:40:48 +00:00
|
|
|
debugMultidex {
|
|
|
|
initWith debug
|
|
|
|
minifyEnabled false
|
2019-05-14 12:08:05 +00:00
|
|
|
multiDexEnabled true
|
|
|
|
dependencies {
|
2019-03-03 20:40:48 +00:00
|
|
|
implementation 'com.android.support:multidex:1.0.3'
|
|
|
|
}
|
2019-05-14 12:08:05 +00:00
|
|
|
manifestPlaceholders = [applicationClassName: "MultiDexApplicationLoader"]
|
2019-03-03 20:40:48 +00:00
|
|
|
}
|
|
|
|
|
2019-01-23 17:03:33 +00:00
|
|
|
HA {
|
|
|
|
debuggable false
|
|
|
|
jniDebuggable false
|
|
|
|
signingConfig signingConfigs.debug
|
2019-06-11 05:42:45 +00:00
|
|
|
//applicationIdSuffix ".beta"
|
2019-01-23 17:03:33 +00:00
|
|
|
minifyEnabled true
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
|
2013-12-20 19:25:49 +00:00
|
|
|
release {
|
|
|
|
debuggable false
|
2014-11-10 11:05:22 +00:00
|
|
|
jniDebuggable false
|
2013-12-20 19:25:49 +00:00
|
|
|
signingConfig signingConfigs.release
|
2018-07-30 02:07:02 +00:00
|
|
|
minifyEnabled true
|
2017-03-30 23:58:05 +00:00
|
|
|
shrinkResources false
|
2016-01-11 17:19:48 +00:00
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
2020-01-03 16:44:17 +00:00
|
|
|
multiDexEnabled true
|
|
|
|
dependencies {
|
|
|
|
implementation 'com.android.support:multidex:1.0.3'
|
|
|
|
}
|
|
|
|
manifestPlaceholders = [applicationClassName: "MultiDexApplicationLoader"]
|
2013-12-20 19:25:49 +00:00
|
|
|
}
|
2014-03-22 22:31:55 +00:00
|
|
|
}
|
|
|
|
|
2014-11-21 19:36:21 +00:00
|
|
|
sourceSets.debug {
|
|
|
|
manifest.srcFile 'config/debug/AndroidManifest.xml'
|
|
|
|
}
|
|
|
|
|
2019-12-31 13:08:08 +00:00
|
|
|
/*sourceSets.debugAsan {
|
|
|
|
manifest.srcFile 'config/debug/AndroidManifest.xml'
|
|
|
|
}*/
|
|
|
|
|
2019-03-03 20:40:48 +00:00
|
|
|
sourceSets.debugMultidex {
|
|
|
|
manifest.srcFile 'config/debug/AndroidManifest.xml'
|
2019-05-14 12:08:05 +00:00
|
|
|
java.srcDirs = ['src/multidex/java']
|
2019-03-03 20:40:48 +00:00
|
|
|
}
|
|
|
|
|
2019-01-23 17:03:33 +00:00
|
|
|
sourceSets.HA {
|
|
|
|
manifest.srcFile 'config/debug/AndroidManifest.xml'
|
|
|
|
}
|
|
|
|
|
2014-11-21 19:36:21 +00:00
|
|
|
sourceSets.release {
|
|
|
|
manifest.srcFile 'config/release/AndroidManifest.xml'
|
2020-01-03 16:44:17 +00:00
|
|
|
java.srcDirs = ['src/multidex/java']
|
2014-11-21 19:36:21 +00:00
|
|
|
}
|
|
|
|
|
2017-12-08 17:35:59 +00:00
|
|
|
flavorDimensions "minApi"
|
|
|
|
|
2016-03-16 12:26:32 +00:00
|
|
|
productFlavors {
|
2018-07-30 02:07:02 +00:00
|
|
|
armv7 {
|
|
|
|
ndk {
|
|
|
|
abiFilters "armeabi-v7a"
|
|
|
|
}
|
|
|
|
ext {
|
|
|
|
abiVersionCode = 1
|
|
|
|
}
|
|
|
|
}
|
2016-03-16 12:26:32 +00:00
|
|
|
x86 {
|
|
|
|
ndk {
|
2018-07-30 02:07:02 +00:00
|
|
|
abiFilters "x86"
|
|
|
|
}
|
|
|
|
ext {
|
|
|
|
abiVersionCode = 2
|
2016-03-16 12:26:32 +00:00
|
|
|
}
|
|
|
|
}
|
2018-07-30 02:07:02 +00:00
|
|
|
armv7_SDK23 {
|
2016-03-16 12:26:32 +00:00
|
|
|
ndk {
|
2018-07-30 02:07:02 +00:00
|
|
|
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
|
2016-03-16 12:26:32 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-30 23:58:05 +00:00
|
|
|
x86_SDK23 {
|
|
|
|
ndk {
|
2018-07-30 02:07:02 +00:00
|
|
|
abiFilters "x86"
|
2017-03-30 23:58:05 +00:00
|
|
|
}
|
|
|
|
sourceSets.debug {
|
|
|
|
manifest.srcFile 'config/debug/AndroidManifest_SDK23.xml'
|
|
|
|
}
|
|
|
|
sourceSets.release {
|
|
|
|
manifest.srcFile 'config/release/AndroidManifest_SDK23.xml'
|
|
|
|
}
|
|
|
|
minSdkVersion 23
|
2018-07-30 02:07:02 +00:00
|
|
|
ext {
|
|
|
|
abiVersionCode = 4
|
|
|
|
}
|
2017-03-30 23:58:05 +00:00
|
|
|
}
|
2018-07-30 02:07:02 +00:00
|
|
|
arm64 {
|
2017-03-30 23:58:05 +00:00
|
|
|
ndk {
|
2018-07-30 02:07:02 +00:00
|
|
|
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'
|
|
|
|
}
|
2019-12-31 13:08:08 +00:00
|
|
|
/*sourceSets.debugAsan {
|
|
|
|
manifest.srcFile 'config/debug/AndroidManifest_SDK23.xml'
|
|
|
|
}*/
|
2018-07-30 02:07:02 +00:00
|
|
|
sourceSets.release {
|
|
|
|
manifest.srcFile 'config/release/AndroidManifest_SDK23.xml'
|
|
|
|
}
|
|
|
|
minSdkVersion 23
|
|
|
|
ext {
|
|
|
|
abiVersionCode = 7
|
|
|
|
}
|
|
|
|
}
|
|
|
|
x64_SDK23 {
|
|
|
|
ndk {
|
|
|
|
abiFilters "x86_64"
|
2017-03-30 23:58:05 +00:00
|
|
|
}
|
|
|
|
sourceSets.debug {
|
|
|
|
manifest.srcFile 'config/debug/AndroidManifest_SDK23.xml'
|
|
|
|
}
|
|
|
|
sourceSets.release {
|
|
|
|
manifest.srcFile 'config/release/AndroidManifest_SDK23.xml'
|
|
|
|
}
|
|
|
|
minSdkVersion 23
|
2018-07-30 02:07:02 +00:00
|
|
|
ext {
|
|
|
|
abiVersionCode = 8
|
|
|
|
}
|
2016-03-16 12:26:32 +00:00
|
|
|
}
|
2018-07-30 02:07:02 +00:00
|
|
|
afat {
|
2017-03-30 23:58:05 +00:00
|
|
|
sourceSets.debug {
|
|
|
|
manifest.srcFile 'config/debug/AndroidManifest_SDK23.xml'
|
|
|
|
}
|
2019-12-31 13:08:08 +00:00
|
|
|
/*sourceSets.debugAsan {
|
|
|
|
manifest.srcFile 'config/debug/AndroidManifest_SDK23.xml'
|
|
|
|
}*/
|
2017-03-30 23:58:05 +00:00
|
|
|
sourceSets.release {
|
|
|
|
manifest.srcFile 'config/release/AndroidManifest_SDK23.xml'
|
|
|
|
}
|
2018-07-30 02:07:02 +00:00
|
|
|
ext {
|
|
|
|
abiVersionCode = 0
|
|
|
|
}
|
2017-03-30 23:58:05 +00:00
|
|
|
}
|
2016-03-16 12:26:32 +00:00
|
|
|
}
|
|
|
|
|
2020-01-17 16:44:31 +00:00
|
|
|
defaultConfig.versionCode = 10 * 1838
|
2019-05-14 12:08:05 +00:00
|
|
|
|
2016-03-16 12:26:32 +00:00
|
|
|
applicationVariants.all { variant ->
|
2017-12-08 17:35:59 +00:00
|
|
|
variant.outputs.all { output ->
|
2019-12-31 13:08:08 +00:00
|
|
|
outputFileName = "app.apk"
|
2019-05-14 12:08:05 +00:00
|
|
|
output.getProcessManifestProvider().get().doLast {
|
2018-07-30 02:07:02 +00:00
|
|
|
def abiVersion = variant.productFlavors.get(0).abiVersionCode
|
2019-05-14 12:08:05 +00:00
|
|
|
|
|
|
|
def outputDir = manifestOutputDirectory
|
|
|
|
File directory
|
|
|
|
if (outputDir instanceof File) {
|
|
|
|
directory = outputDir
|
|
|
|
} else {
|
|
|
|
directory = outputDir.get().asFile
|
|
|
|
}
|
|
|
|
|
|
|
|
String manifestPath = directory.toString() + "/AndroidManifest.xml"
|
2017-12-08 17:35:59 +00:00
|
|
|
def manifestContent = file(manifestPath).getText()
|
2019-05-14 12:08:05 +00:00
|
|
|
|
2020-01-01 12:10:52 +00:00
|
|
|
manifestContent = manifestContent.replace(String.format('android:versionCode="%d"', defaultConfig.versionCode), String.format('android:versionCode="%s"', defaultConfig.versionCode + abiVersion))
|
2017-12-08 17:35:59 +00:00
|
|
|
file(manifestPath).write(manifestContent)
|
|
|
|
}
|
|
|
|
}
|
2016-03-16 12:26:32 +00:00
|
|
|
}
|
|
|
|
|
2019-03-03 20:40:48 +00:00
|
|
|
variantFilter { variant ->
|
|
|
|
def names = variant.flavors*.name
|
2019-05-14 12:08:05 +00:00
|
|
|
if (variant.buildType.name != "release" && !names.contains("afat")) {
|
2019-03-03 20:40:48 +00:00
|
|
|
setIgnore(true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-25 15:19:00 +00:00
|
|
|
defaultConfig {
|
2017-07-23 13:43:02 +00:00
|
|
|
minSdkVersion 16
|
2019-12-08 09:55:30 +00:00
|
|
|
targetSdkVersion 28
|
2020-01-16 17:07:23 +00:00
|
|
|
versionName "5.13.1.4"
|
2018-07-30 02:07:02 +00:00
|
|
|
|
2019-05-14 12:08:05 +00:00
|
|
|
vectorDrawables.generatedDensities = ['mdpi', 'hdpi', 'xhdpi', 'xxhdpi']
|
2016-10-11 11:57:01 +00:00
|
|
|
|
|
|
|
externalNativeBuild {
|
|
|
|
ndkBuild {
|
2019-12-31 13:08:08 +00:00
|
|
|
arguments "NDK_APPLICATION_MK:=jni/Application.mk", "APP_PLATFORM:=android-16", "--jobs=8"
|
2018-07-30 02:07:02 +00:00
|
|
|
abiFilters "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
|
2016-10-11 11:57:01 +00:00
|
|
|
}
|
|
|
|
}
|
2019-03-03 20:40:48 +00:00
|
|
|
|
2019-05-14 12:08:05 +00:00
|
|
|
manifestPlaceholders = [applicationClassName: "ApplicationLoader"]
|
2013-10-25 15:19:00 +00:00
|
|
|
}
|
|
|
|
}
|
2016-04-22 13:49:00 +00:00
|
|
|
|
|
|
|
apply plugin: 'com.google.gms.google-services'
|