diff --git a/stream_chat_v1/android/app/build.gradle b/stream_chat_v1/android/app/build.gradle index 6a55b33..e91ca1b 100644 --- a/stream_chat_v1/android/app/build.gradle +++ b/stream_chat_v1/android/app/build.gradle @@ -47,6 +47,15 @@ android { testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } + signingConfigs { + debug { + storeFile file('debug.keystore') + storePassword 'android' + keyAlias 'androiddebugkey' + keyPassword 'android' + } + } + buildTypes { release { // TODO: Add your own signing config for the release build. diff --git a/stream_chat_v1/android/app/debug.keystore b/stream_chat_v1/android/app/debug.keystore new file mode 100644 index 0000000..cdfc792 Binary files /dev/null and b/stream_chat_v1/android/app/debug.keystore differ