mirror of
https://github.com/chiteroman/PlayIntegrityFix.git
synced 2025-01-19 03:22:39 +02:00
45 lines
1.0 KiB
Plaintext
45 lines
1.0 KiB
Plaintext
plugins {
|
|
id("com.android.application")
|
|
}
|
|
|
|
android {
|
|
namespace = "es.chiteroman.playintegrityfix"
|
|
compileSdk = 34
|
|
ndkVersion = "26.1.10909125"
|
|
buildToolsVersion = "34.0.0"
|
|
|
|
defaultConfig {
|
|
applicationId = "es.chiteroman.playintegrityfix"
|
|
minSdk = 26
|
|
targetSdk = 34
|
|
versionCode = 1
|
|
versionName = "1.0"
|
|
|
|
externalNativeBuild {
|
|
ndk {
|
|
jobs = Runtime.getRuntime().availableProcessors()
|
|
abiFilters += "armeabi-v7a"
|
|
abiFilters += "arm64-v8a"
|
|
}
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
isMinifyEnabled = true
|
|
isShrinkResources = true
|
|
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
|
|
}
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
externalNativeBuild {
|
|
ndkBuild {
|
|
path = file("src/main/cpp/Android.mk")
|
|
}
|
|
}
|
|
} |