Skip to content

Commit f6c0d0f

Browse files
chore(main): release 1.1.0-rc (#299)
* chore(main): release 1.1.0-rc * Correct CHANGELOG * Copilot review * Update gradle and the android gradle plugin. * Upgrade gradle * Copilot review * fix typo --------- Co-authored-by: Mike Rudat <mike.rudat@fusionauth.io>
1 parent 3151013 commit f6c0d0f

9 files changed

Lines changed: 92 additions & 26 deletions

File tree

.github/prerelease-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "1.0.0"
2+
".": "1.1.0-rc"
33
}

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# Changelog
22

3+
## [1.1.0-rc](https://github.com/FusionAuth/fusionauth-android-sdk/compare/v1.0.0...v1.1.0-rc) (2026-04-09)
4+
5+
6+
### Features
7+
8+
* Add prompt parameter support to OAuth2 authorization request ([#295](https://github.com/FusionAuth/fusionauth-android-sdk/issues/295)) ([e7c7e7a](https://github.com/FusionAuth/fusionauth-android-sdk/commit/e7c7e7a3841bf156af2c461faa23ee877a9b05e9))
9+
10+
11+
### Miscellaneous Chores
12+
* Updated all docker-compose files with installation source ([#287](https://github.com/FusionAuth/fusionauth-android-sdk/pull/287)) ([bfe4834](https://github.com/FusionAuth/fusionauth-android-sdk/commit/bfe48345485cec1a42f9478b15eb30f23db447de))
13+
14+
15+
### Build System and Dependencies
16+
17+
* **deps:** bump github/codeql-action in the prod-github-actions group ([#293](https://github.com/FusionAuth/fusionauth-android-sdk/issues/293)) ([b6d869c](https://github.com/FusionAuth/fusionauth-android-sdk/commit/b6d869c552d2cb1d6d9b468a967d22f70e67ccb9))
18+
* **deps:** bump the prod-github-actions group across 1 directory with 6 updates ([#285](https://github.com/FusionAuth/fusionauth-android-sdk/issues/285)) ([88c5cfd](https://github.com/FusionAuth/fusionauth-android-sdk/commit/88c5cfd41e76b520dfa08bed7b6f3027e18ef3ac))
19+
* **ci:** workflows update ([#214](https://github.com/FusionAuth/fusionauth-android-sdk/pull/214)) ([d5c68ee](https://github.com/FusionAuth/fusionauth-android-sdk/commit/d5c68ee986384156d383801aa3f6d62e4f5eae31))
20+
* **deps:** bump opensearchproject/opensearch in /fusionauth/latest ([#284](https://github.com/FusionAuth/fusionauth-android-sdk/issues/284)) ([b51b360](https://github.com/FusionAuth/fusionauth-android-sdk/commit/b51b360ba519a4e2881c63e4a971f3dcbacd646d))
21+
22+
323
## [1.0.0](https://github.com/FusionAuth/fusionauth-android-sdk/compare/v0.2.0...v1.0.0) (2026-01-27)
424

525

app/build.gradle.kts

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -51,28 +51,28 @@ android {
5151

5252
dependencies {
5353

54-
implementation("androidx.core:core-ktx:1.17.0")
55-
implementation("androidx.appcompat:appcompat:1.7.1")
56-
implementation("com.google.android.material:material:1.13.0")
54+
implementation(libs.androidx.core.ktx)
55+
implementation(libs.androidx.appcompat)
56+
implementation(libs.material)
5757
implementation(project(":library"))
58-
implementation("androidx.constraintlayout:constraintlayout:2.2.1")
59-
implementation("androidx.navigation:navigation-fragment-ktx:2.9.7")
60-
implementation("androidx.navigation:navigation-ui-ktx:2.9.7")
61-
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.10.2")
62-
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2")
63-
implementation("androidx.browser:browser:1.9.0")
64-
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.10.0")
65-
annotationProcessor("androidx.room:room-compiler:2.8.4")
66-
testImplementation("junit:junit:4.13.2")
67-
androidTestImplementation("androidx.test.ext:junit:1.3.0")
68-
androidTestImplementation("androidx.test.espresso:espresso-core:3.7.0")
58+
implementation(libs.androidx.constraintlayout)
59+
implementation(libs.androidx.navigation.fragment.ktx)
60+
implementation(libs.androidx.navigation.ui.ktx)
61+
implementation(libs.kotlinx.coroutines.core)
62+
implementation(libs.kotlinx.coroutines.android)
63+
implementation(libs.androidx.browser)
64+
implementation(libs.androidx.lifecycle.runtime.ktx)
65+
annotationProcessor(libs.androidx.room.compiler)
66+
testImplementation(libs.junit)
67+
androidTestImplementation(libs.androidx.junit)
68+
androidTestImplementation(libs.androidx.espresso.core)
6969

7070
//Espresso dependencies
71-
androidTestImplementation("androidx.test:runner:1.7.0")
72-
androidTestImplementation("androidx.test:rules:1.7.0")
73-
androidTestImplementation("androidx.test.espresso:espresso-intents:3.7.0")
74-
androidTestImplementation("androidx.test.espresso:espresso-contrib:3.7.0")
71+
androidTestImplementation(libs.androidx.runner)
72+
androidTestImplementation(libs.androidx.rules)
73+
androidTestImplementation(libs.androidx.espresso.intents)
74+
androidTestImplementation(libs.androidx.espresso.contrib)
7575

7676
//UIAutomator dependency
77-
androidTestImplementation("androidx.test.uiautomator:uiautomator:2.3.0")
77+
androidTestImplementation(libs.androidx.uiautomator)
7878
}

build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ import io.gitlab.arturbosch.detekt.report.ReportMergeTask
33

44
// Top-level build file where you can add configuration options common to all sub-projects/modules.
55
plugins {
6-
id("com.android.application") version "8.13.1" apply false
6+
id("com.android.application") version "9.1.1" apply false
77
id("org.jetbrains.kotlin.android") version "2.2.21" apply false
8-
id("com.android.library") version "8.13.1" apply false
8+
id("com.android.library") version "9.1.1" apply false
99
id("io.gitlab.arturbosch.detekt") version "1.23.8"
1010
id("org.jetbrains.dokka") version "2.1.0"
1111
id("io.github.gradle-nexus.publish-plugin") version "2.0.0"

gradle.properties

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,14 @@ kotlin.code.style=official
2222
# thereby reducing the size of the R class for that library
2323
android.nonTransitiveRClass=true
2424
# activates the DGP v2 plugin with migration helpers
25-
org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled
25+
org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled
26+
android.defaults.buildfeatures.resvalues=true
27+
android.sdk.defaultTargetSdkToCompileSdkIfUnset=false
28+
android.enableAppCompileTimeRClass=false
29+
android.usesSdkInManifest.disallowed=false
30+
android.uniquePackageNames=false
31+
android.dependency.useConstraints=true
32+
android.r8.strictFullModeForKeepRules=false
33+
android.r8.optimizedResourceShrinking=false
34+
android.builtInKotlin=false
35+
android.newDsl=false

gradle/libs.versions.toml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
[versions]
2+
appcompat = "1.7.1"
3+
browser = "1.10.0"
4+
constraintlayout = "2.2.1"
5+
coreKtx = "1.18.0"
6+
espresso = "3.7.0"
7+
junit = "1.3.0"
8+
junitVersion = "4.13.2"
9+
kotlinx = "1.10.2"
10+
lifecycleRuntimeKtx = "2.10.0"
11+
material = "1.13.0"
12+
navigation = "2.9.7"
13+
roomCompiler = "2.8.4"
14+
test = "1.7.0"
15+
uiautomator = "2.3.0"
16+
17+
[libraries]
18+
androidx-appcompat = { group = "androidx.appcompat", name = "appcompat", version.ref = "appcompat" }
19+
androidx-browser = { group = "androidx.browser", name = "browser", version.ref = "browser" }
20+
androidx-constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" }
21+
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
22+
androidx-espresso-contrib = { group = "androidx.test.espresso", name = "espresso-contrib", version.ref = "espresso" }
23+
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espresso" }
24+
androidx-espresso-intents = { group = "androidx.test.espresso", name = "espresso-intents", version.ref = "espresso" }
25+
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junit" }
26+
androidx-lifecycle-runtime-ktx = { group = "androidx.lifecycle", name = "lifecycle-runtime-ktx", version.ref = "lifecycleRuntimeKtx" }
27+
androidx-navigation-fragment-ktx = { group = "androidx.navigation", name = "navigation-fragment-ktx", version.ref = "navigation" }
28+
androidx-navigation-ui-ktx = { group = "androidx.navigation", name = "navigation-ui-ktx", version.ref = "navigation" }
29+
androidx-room-compiler = { group = "androidx.room", name = "room-compiler", version.ref = "roomCompiler" }
30+
androidx-rules = { group = "androidx.test", name = "rules", version.ref = "test" }
31+
androidx-runner = { group = "androidx.test", name = "runner", version.ref = "test" }
32+
androidx-uiautomator = { group = "androidx.test.uiautomator", name = "uiautomator", version.ref = "uiautomator" }
33+
junit = { group = "junit", name = "junit", version.ref = "junitVersion" }
34+
kotlinx-coroutines-android = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-android", version.ref = "kotlinx" }
35+
kotlinx-coroutines-core = { group = "org.jetbrains.kotlinx", name = "kotlinx-coroutines-core", version.ref = "kotlinx" }
36+
material = { group = "com.google.android.material", name = "material", version.ref = "material" }

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

library/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ publishing {
7676
groupId = "io.fusionauth"
7777
artifactId = "fusionauth-android-sdk"
7878
// x-release-please-start-version
79-
version = "1.0.0"
79+
version = "1.1.0-rc"
8080
// x-release-please-end
8181

8282
// And here are some more properties that go into the pom file.

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.0
1+
1.1.0-rc

0 commit comments

Comments
 (0)