Skip to content
This repository has been archived by the owner on Jul 19, 2024. It is now read-only.

Commit

Permalink
Downgrade minSdk to 30
Browse files Browse the repository at this point in the history
  • Loading branch information
aviraxp committed Jul 6, 2024
1 parent 7a8fa60 commit 7a5df37
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ android {

defaultConfig {
applicationId = "io.github.aviraxp.keystoreinjection"
minSdk = 34
minSdk = 30
targetSdk = 35
versionCode = 10
versionName = "v0.1.0"
Expand Down
4 changes: 2 additions & 2 deletions module/customize.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Error on < Android 14.
if [ "$API" -lt 34 ]; then
abort "- !!! You can't use this module on Android < 14"
if [ "$API" -lt 30]; then
abort "- !!! You can't use this module on Android < 11"
fi

0 comments on commit 7a5df37

Please sign in to comment.