Skip to main content

Installation

Learn how to add Shake to your Android app using Gradle.

Create a new app on Dashboard

Visit your Shake Dashboard and add a new Native Android app by clicking the + button in the sidebar. Once you're done, you're ready to proceed with the steps below.

Add Shake dependency to your app-level build.gradle file

build.gradle
dependencies {
implementation 'com.shakebugs:shake:'
}

Initialize Shake

Initialize Shake in the onCreate callback of your Application. Replace your-api-client-id and your-api-client-secret with the actual values you have in your workspace administration:

App.kt
import android.app.Application
import com.shakebugs.shake.Shake
class App : Application() {
override fun onCreate() {
super.onCreate()
Shake.start(this, "your-api-client-id", "your-api-client-secret")
}
}

Build and run your project by selecting Run → Run in the menu bar.

Conditional initialization

We recommend initializing Shake in the entry point of your app. However, depending on your app, you'll want to initialize Shake just in a specific conditions, depending on your app data. You can do it as shown in the example below when your app data is available:

MainActivity.kt
class MainActivity : Activity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
if (User.isTester) {
Shake.start(this, "your-api-client-id", "your-api-client-secret")
}
}
}
note

If you are initializing Shake outside Application class, make sure you initialize it in the onCreate callback of the Activity.

note

If you are using chat feature and push notifications, make sure that Shake is started in the Application class.

Visit your Shake Dashboard again

Follow the instructions there to send your first feedback with Shake and you're all set.

SDK customizations

Now that Shake SDK is in your app and you have sent the first feedback for fun, everything else is optional. As the next step, try the three most popular SDK customizations: