Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if (localPropsFile.exists()) {

android {
namespace 'org.proxydroid'
compileSdk 34
compileSdk 36
ndkVersion "25.1.8937393"

signingConfigs {
Expand All @@ -30,7 +30,7 @@ android {
defaultConfig {
applicationId "org.proxydroid"
minSdk 24
targetSdk 35
targetSdk 36
versionCode 74
versionName "3.4.0"

Expand Down
5 changes: 5 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,8 @@ org.gradle.jvmargs=-Xmx1536m
android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true
# AGP 8.1.2 only officially supports compileSdk 34; suppress the unsupported
# compileSdk error so we can target API 36 (Android 16) for Google Play's
# 2025/2026 policy without bumping AGP (which retriggers the
# rust-android-gradle 0.9.6 mergeJniLibFolders duplicate-resources bug).
android.suppressUnsupportedCompileSdk=36
Loading