Skip to content

Commit

Permalink
Fix workflows + update AGP
Browse files Browse the repository at this point in the history
  • Loading branch information
chiteroman committed Dec 13, 2024
1 parent aba008e commit 94c7c82
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 11 deletions.
11 changes: 4 additions & 7 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,15 @@ android {
applicationId = "es.chiteroman.playintegrityfix"
minSdk = 26
targetSdk = 35
versionCode = 18000
versionName = "v18.0"
versionCode = 18100
versionName = "v18.1"
multiDexEnabled = false

externalNativeBuild {
cmake {
arguments(
"-DCMAKE_BUILD_TYPE=Release",
"-DANDROID_STL=none",
"-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON",
"-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=ON"
"-DCMAKE_BUILD_TYPE=MinSizeRel",
"-DANDROID_STL=none"
)

cFlags(
Expand Down Expand Up @@ -74,7 +72,6 @@ android {
externalNativeBuild {
cmake {
path = file("src/main/cpp/CMakeLists.txt")
version = "3.31.0"
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/cpp/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.31.0)
cmake_minimum_required(VERSION 3.5)

project("playintegrityfix")

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
agp = "8.7.2"
agp = "8.7.3"
cxx = "27.0.12077973"
hiddenapibypass = "4.3"

Expand Down
4 changes: 2 additions & 2 deletions module/module.prop
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
id=playintegrityfix
name=Play Integrity Fix
version=v18.0
versionCode=18000
version=v18.1
versionCode=18100
author=chiteroman
description=Universal modular fix for Play Integrity (and SafetyNet) on devices running Android 8-15
updateJson=https://raw.githubusercontent.com/chiteroman/PlayIntegrityFix/main/update.json

0 comments on commit 94c7c82

Please sign in to comment.