Skip to content

Commit

Permalink
adds fdi
Browse files Browse the repository at this point in the history
  • Loading branch information
rishabhpoddar committed May 28, 2024
1 parent 06f655c commit 0a9d443
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.1] - 2024-05-28

- Adds FDI 2.0 and 3.0 support

## [0.4.0] - 2024-04-08

### Breaking changes
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apply plugin: 'com.android.library'
apply plugin: 'maven-publish'
def publishVersionID = "0.4.0"
def publishVersionID = "0.4.1"

android {
compileSdkVersion 32
Expand Down
3 changes: 2 additions & 1 deletion app/src/main/java/com/supertokens/session/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,6 @@
import java.util.Arrays;

public class Version {
public static ArrayList<String> supported_fdi = new ArrayList<>(Arrays.asList("1.16", "1.17", "1.18", "1.19"));
public static ArrayList<String> supported_fdi = new ArrayList<>(
Arrays.asList("1.16", "1.17", "1.18", "1.19", "2.0", "3.0"));
}
2 changes: 1 addition & 1 deletion examples/with-thirdparty/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ dependencyResolutionManagement {
Add the folliwing to your app level `build.gradle`

```gradle
implementation("com.github.supertokens:supertokens-android:0.4.0")
implementation("com.github.supertokens:supertokens-android:0.4.1")
implementation ("com.google.android.gms:play-services-auth:20.7.0")
implementation("com.squareup.retrofit2:retrofit:2.9.0")
implementation("net.openid:appauth:0.11.1")
Expand Down

0 comments on commit 0a9d443

Please sign in to comment.