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

[FDE-1492] deprecate plugins #11

Merged
merged 4 commits into from
Oct 24, 2023
Merged
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
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ repositories {
// add the dependency to the app's build.gradle
dependencies {
// Solve Android SDK
implementation "ai.forethought:solve-android-source:0.1.0"
implementation "ai.forethought:solve-android-source:1.0.1"
}
```

Expand All @@ -40,7 +40,7 @@ repositories {
// add the dependency to the app's build.gradle
dependencies {
// Solve Android SDK
implementation("ai.forethought:solve-android-source:0.1.0")
implementation("ai.forethought:solve-android-source:1.0.1")
}
```

Expand All @@ -50,7 +50,7 @@ dependencies {

```java
// Java
Forethought.INSTANCE.setup("FORETHOUGHT_API_KEY", null);
Forethought.INSTANCE.setup("FORETHOUGHT_API_KEY");

// Kotlin
Forethought.setup("FORETHOUGHT_API_KEY")
Expand Down Expand Up @@ -178,4 +178,4 @@ To handoff from Forethought to another helpdesk / provider, implement the follow

### Plugins

**⛔️ Our Plugins are no longer supported and will be deprecated in future versions ⛔️**
**⛔️ Plugins were removed in version 1.0.0 ⛔️**
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ subprojects {
} else if (plugins.hasPlugin("android-library")) {
from(components["release"])
}
version = "0.0.1"
version = "1.0.1"
}
}
}
Expand Down
15 changes: 0 additions & 15 deletions buildSrc/src/main/java/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,6 @@ object Dependencies {
const val material = "com.google.android.material:material:${Versions.material}"
const val timber = "com.jakewharton.timber:timber:${Versions.timber}"

object Kustomer {
const val ui = "com.kustomer.chat:ui:${Versions.kustomer}"
const val core = "com.kustomer.chat:core:${Versions.kustomer}"
}

object Zendesk {
const val chat = "com.zendesk:chat:${Versions.zendesk_chat}"
const val messaging = "com.zendesk:messaging:${Versions.zendesk_messaging}"
}

object Intercom {
const val sdk = "io.intercom.android:intercom-sdk:${Versions.intercom_sdk}"
const val messaging = "com.google.firebase:firebase-messaging:${Versions.intercom_messaging}"
}

object Forethought {
const val core = "ai.forethought.solve-android-source:core:${Versions.solve}"
const val solve = "ai.forethought:solve-android-source:${Versions.solve}"
Expand Down
7 changes: 1 addition & 6 deletions buildSrc/src/main/java/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,7 @@ object Versions {
const val constraintLayout = "2.1.3"
}

const val solve = "0.1.2"
const val kustomer = "2.10.4"
const val zendesk_chat = "3.3.6"
const val zendesk_messaging = "5.2.5"
const val intercom_sdk = "14.0.0"
const val intercom_messaging = "23.1.+"
const val solve = "1.0.1"

const val material = "1.5.0"

Expand Down
129 changes: 0 additions & 129 deletions plugins/README.md

This file was deleted.

1 change: 0 additions & 1 deletion plugins/intercom/.gitignore

This file was deleted.

58 changes: 0 additions & 58 deletions plugins/intercom/build.gradle.kts

This file was deleted.

4 changes: 0 additions & 4 deletions plugins/intercom/src/main/AndroidManifest.xml

This file was deleted.

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion plugins/kustomer/.gitignore

This file was deleted.

Loading