Skip to content

Commit

Permalink
Remove Jitpack
Browse files Browse the repository at this point in the history
Jitpack was just too flakey to get working. All the builds failed with weird errors. From looking at their Issues, many other people have the same issues and they don't seem to be addressed. Will distribute manually for now, then probably look at Maven Central in the future.
  • Loading branch information
Adam Harwood committed Feb 10, 2023
1 parent 047784b commit a4fac04
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 36 deletions.
22 changes: 3 additions & 19 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,9 @@
This sdk makes it easy to integrate the [Guru Platform](https://www.getguru.ai/) with your Android application.

## Getting Started
The SDK is distributed through [JitPack](https://jitpack.io/).
To add the SDK to your Android project, add the JitPack repository:
```
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```
Please reach out to [Guru](mailto:[email protected]) to get an API key.

And then declare the dependency:
```
dependencies {
implementation 'com.github.Formguru:guru-android-sdk:X.Y.Z'
}
```
To find the latest release version, check the [Releases](https://github.com/Formguru/guru-android-sdk/releases) page.

Once you have the dependency declared, take a look at our
Once you have your API key and have depended on this SDK,
take a look at our
[Getting Started Guide](https://blog.getguru.ai/get-started-with-guru-in-10-minutes-524b2a009be)
to find out how to start working with Guru.
17 changes: 0 additions & 17 deletions guru-android-sdk/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
plugins {
id 'com.android.library'
id 'org.jetbrains.kotlin.android'
id 'maven-publish'
}

group = 'com.github.Formguru'
version = '1.0.0'

android {
namespace 'ai.getguru.androidsdk'
compileSdk 30
Expand Down Expand Up @@ -44,17 +40,4 @@ dependencies {
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
}

afterEvaluate {
publishing {
publications {
release(MavenPublication) {
from components.release
groupId = 'com.github.Formguru'
artifactId = 'guru-android-sdk'
version = '1.0.0'
}
}
}
}

0 comments on commit a4fac04

Please sign in to comment.