Skip to content

Commit d19c7d3

Browse files
committed
Build with SDK 33, Gradle 8.1.1 and Android tools 8.0.1
1 parent 5966cc7 commit d19c7d3

9 files changed

+13
-14
lines changed

app/AndroidManifest.xml

+1-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@
1111
* express or implied. See the License for the specific language governing permissions and
1212
* limitations under the License.
1313
-->
14-
<manifest
15-
xmlns:android="http://schemas.android.com/apk/res/android"
16-
package="net.openid.appauthdemo" >
14+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
1715

1816
<uses-permission android:name="android.permission.INTERNET" />
1917

app/build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ apply from: '../config/android-common.gradle'
44
apply from: '../config/keystore.gradle'
55

66
android {
7+
namespace 'net.openid.appauthdemo'
78
defaultConfig {
89
applicationId 'net.openid.appauthdemo'
910
project.archivesBaseName = 'appauth-demoapp'

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
google()
99
}
1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:4.2.1'
11+
classpath 'com.android.tools.build:gradle:8.0.1'
1212
classpath 'org.ajoberstar.grgit:grgit-gradle:4.1.1'
1313
classpath 'org.jacoco:org.jacoco.core:0.8.7'
1414
}
@@ -41,7 +41,7 @@ try {
4141

4242
project.ext {
4343
minSdkVersion = 16
44-
compileSdkVersion = 31
44+
compileSdkVersion = 33
4545

4646
googleVersions = [
4747
glide : '4.12.0',

config/android-common.gradle

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
android {
2+
namespace 'net.openid.appauth'
23
compileSdkVersion rootProject.compileSdkVersion
34
defaultConfig {
45
minSdkVersion rootProject.minSdkVersion
@@ -41,7 +42,7 @@ task jar(type: Copy, dependsOn:'bundleRelease') {
4142
// produces a JAR containing sources
4243
task sourcesJar(type: Jar, dependsOn:'generateReleaseSources') {
4344
from android.sourceSets.main.java.srcDirs
44-
classifier = 'sources'
45+
archiveClassifier = 'sources'
4546
}
4647

4748
tasks.withType(JavaCompile) {

config/coverage.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ task jacocoTestReport(type: JacocoReport, dependsOn: "testDebugUnitTest") {
1414
group = "Reporting"
1515
description = "Generate Jacoco coverage reports after running tests."
1616
reports {
17-
xml.enabled = true
18-
html.enabled = true
17+
xml.required.set(true)
18+
html.required.set(true)
1919
}
2020
// Class R is used, but usage will not be covered, so ignore this class from report
2121
afterEvaluate {

config/javadoc.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies {
99
task androidJavadoc(type: JavaExec) {
1010
jvmArgs = ['--add-exports=jdk.javadoc/jdk.javadoc.internal.tool=ALL-UNNAMED']
1111
classpath files(project.android.getBootClasspath())
12-
main = 'jdk.javadoc.internal.tool.Main'
12+
mainClass = 'jdk.javadoc.internal.tool.Main'
1313
ext.destinationDir = file("${project.buildDir}/docs/javadoc")
1414
args = ['-doctitle', "AppAuth for Android",
1515
'-use',
@@ -25,7 +25,7 @@ task androidJavadoc(type: JavaExec) {
2525
}
2626

2727
task javadocJar(type: Jar, dependsOn: androidJavadoc) {
28-
classifier = 'javadoc'
28+
archiveClassifier = 'javadoc'
2929
from androidJavadoc.ext.destinationDir
3030
}
3131

config/style.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ task checkAllSource(type: Checkstyle) {
1010
afterEvaluate {
1111
source 'java'
1212
include '**/*.java'
13-
classpath = files project.configurations.compile.files
13+
classpath = files()
1414
}
1515
}
1616

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#Sat Jun 13 20:20:21 CEST 2020
22
zipStoreBase=GRADLE_USER_HOME
33
zipStorePath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8.3-all.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-all.zip

library/AndroidManifest.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@
1212
* express or implied. See the License for the specific language governing permissions and
1313
* limitations under the License.
1414
-->
15-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
16-
package="net.openid.appauth">
15+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
1716

1817
<uses-permission android:name="android.permission.INTERNET" />
1918

0 commit comments

Comments
 (0)