Skip to content

Commit

Permalink
Merge pull request #464 from ForgeRock/SDKS-3595
Browse files Browse the repository at this point in the history
SDKS-3595 Remove Deprecated Sample Apps
  • Loading branch information
spetrov authored Dec 11, 2024
2 parents 8ca531f + 99da6de commit 9e3be1e
Show file tree
Hide file tree
Showing 360 changed files with 17 additions and 8,176 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/bitbar-prepare-artifacts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
- name: Sign app-debug-androidTest.apk
uses: r0adkll/sign-android-release@v1
with:
releaseDirectory: samples/app/build/outputs/apk/androidTest/debug
releaseDirectory: e2e/app/build/outputs/apk/androidTest/debug
signingKeyBase64: ${{ secrets.SIGNING_KEYSTORE }}
alias: ${{ secrets.SIGNING_ALIAS }}
keyStorePassword: ${{ secrets.SIGNING_KEYSTORE_PASSWORD }}
Expand All @@ -76,7 +76,7 @@ jobs:
if: success()
with:
name: app-debug-androidTest-signed.apk
path: samples/app/build/outputs/apk/androidTest/debug/app-debug-androidTest-signed.apk
path: e2e/app/build/outputs/apk/androidTest/debug/app-debug-androidTest-signed.apk

- name: Publish forgerock-integration-tests-debug-androidTest-signed.apk
uses: actions/upload-artifact@v3
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/*
* Copyright (c) 2023-2024 ForgeRock. All rights reserved.
* Copyright (c) 2023 - 2024 ForgeRock. All rights reserved.
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/

package com.example.app.env
Expand All @@ -19,9 +19,8 @@ import org.forgerock.android.auth.FROptions
import org.forgerock.android.auth.FROptionsBuilder
import org.forgerock.android.auth.Logger

private val TAG = EnvViewModel::class.java.simpleName

const val USER_PROFILE_JOURNEY = "UserProfile"
private val TAG = EnvViewModel::class.java.simpleName

class EnvViewModel : ViewModel() {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ class SelfServiceViewModel : ViewModel() {
when (device) {
is OathDevice -> repo.oath.delete(device)
is PushDevice -> repo.push.delete(device)
is WebAuthnDevice -> repo.webAuthn.update(device)
is BoundDevice -> repo.bound.update(device)
is ProfileDevice -> repo.profile.update(device)
is WebAuthnDevice -> repo.webAuthn.delete(device)
is BoundDevice -> repo.bound.delete(device)
is ProfileDevice -> repo.profile.delete(device)
else -> throw IllegalArgumentException("Unsupported Device Type")
}
fetch(selectedType)
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 6 additions & 0 deletions forgerock-auth-ui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,12 @@ android {
}
}

kotlin {
jvmToolchain {
languageVersion.set(JavaLanguageVersion.of(17))
}
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
Expand Down
1 change: 0 additions & 1 deletion samples/auth/.gitignore

This file was deleted.

100 changes: 0 additions & 100 deletions samples/auth/build.gradle

This file was deleted.

21 changes: 0 additions & 21 deletions samples/auth/proguard-rules.pro

This file was deleted.

119 changes: 0 additions & 119 deletions samples/auth/src/main/AndroidManifest.xml

This file was deleted.

Binary file removed samples/auth/src/main/ic_launcher-playstore.png
Binary file not shown.
Binary file removed samples/auth/src/main/ic_launcher-web.png
Binary file not shown.
Binary file removed samples/auth/src/main/ic_logo-playstore.png
Binary file not shown.
Binary file removed samples/auth/src/main/ic_logo-web.png
Binary file not shown.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 9e3be1e

Please sign in to comment.