Skip to content
Open
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
7 changes: 7 additions & 0 deletions androidsvg/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ android {
compileSdk 34

defaultConfig {
// Must stay set. Without it AGP writes minSdkVersion="1" into the AAR
// manifest, and since AGP strips targetSdkVersion from library manifests
// entirely, consumers fall back to targetSdk == minSdk == 1. That trips the
// manifest merger's implied-permission rules (targetSdk < 4 -> READ_PHONE_STATE;
// targetSdk < 16 + app requests WRITE_EXTERNAL_STORAGE -> READ_EXTERNAL_STORAGE),
// silently adding uncapped storage/phone permissions to every consuming app.
minSdk 21

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
Expand Down
2 changes: 1 addition & 1 deletion androidsvg/publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
apply plugin: 'maven-publish'


def versionName = '1.6'
def versionName = '1.6.1'

def libraryName = 'AndroidSVG'
def libraryDescription = 'SVG rendering library for Android.'
Expand Down