mirror of
https://github.com/chiteroman/PlayIntegrityFix.git
synced 2025-01-19 11:32: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 {
|
||
|
//noinspection ChromeOsAbiSupport
|
||
|
abiFilters += setOf("armeabi-v7a", "arm64-v8a")
|
||
|
jobs = 4
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
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")
|
||
|
}
|
||
|
}
|
||
|
}
|