diff --git a/README.md b/README.md index 3c34325..e2106f4 100644 --- a/README.md +++ b/README.md @@ -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:support@getguru.fitness) 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. \ No newline at end of file diff --git a/guru-android-sdk/build.gradle b/guru-android-sdk/build.gradle index d8744df..c432b3a 100644 --- a/guru-android-sdk/build.gradle +++ b/guru-android-sdk/build.gradle @@ -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 @@ -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' - } - } - } } \ No newline at end of file