Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 7.2.9 bump target sdk for Google #1013

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
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
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ext {
android_build_tools_version = "30.0.2"
android_compile_sdk_version = 33
android_min_sdk_version = 24
android_target_sdk_version = 33
android_target_sdk_version = 35

// Required for some dependencies only available from our private S3
//
Expand Down
6 changes: 3 additions & 3 deletions buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ plugins {
`kotlin-dsl`
}

kotlinDslPluginOptions {
experimentalWarning.set(false)
}
//kotlinDslPluginOptions {
// experimentalWarning.set(false)
//}

repositories {
jcenter()
Expand Down
4 changes: 2 additions & 2 deletions build_aar.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ android {
unitTests.includeAndroidResources = true
unitTests.all {
reports {
junitXml.enabled = true
html.enabled = true
// junitXml.enabled = true
// html.enabled = true
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions build_publishing.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ def noSigning =
project.hasProperty('org.librarysimplified.no_signing')

task javadocsJar(type: Jar) {
classifier = "javadoc"
archiveClassifier = "javadoc"
}

task sourcesJar(type: Jar) {
classifier = "sources"
archiveClassifier = "sources"
from "src/main/java", "src/main/resources"
}

Expand Down
2 changes: 1 addition & 1 deletion simplified-app-simplye/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ POM_ARTIFACT_ID=org.librarysimplified.simplye.app
POM_DESCRIPTION=SimplyE (Application)
POM_NAME=org.librarysimplified.simplye.app
POM_PACKAGING=apk
VERSION_NAME=7.2.6-SNAPSHOT
VERSION_NAME=7.2.9

# Skip this project unless the property `org.librarysimplified.drm.enabled=true`
# is also defined.
Expand Down
Loading