Merge branch 'main' into develop
This commit is contained in:
@@ -0,0 +1,15 @@
|
|||||||
|
# Configuration for probot-no-response - https://github.com/probot/no-response
|
||||||
|
|
||||||
|
# Number of days of inactivity before an issue is closed for lack of response.
|
||||||
|
daysUntilClose: 7
|
||||||
|
|
||||||
|
# Label requiring a response.
|
||||||
|
responseRequiredLabel: "waiting for customer response"
|
||||||
|
|
||||||
|
# Comment to post when closing an Issue for lack of response. Set to `false` to disable
|
||||||
|
closeComment: >
|
||||||
|
Without additional information, we are unfortunately not sure how to
|
||||||
|
resolve this issue. We are therefore reluctantly going to close this
|
||||||
|
bug for now. Please don't hesitate to comment on the bug if you have
|
||||||
|
any more information for us; we will reopen it right away!
|
||||||
|
Thanks for your contribution.
|
||||||
@@ -31,7 +31,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
flutter pub get
|
flutter pub get
|
||||||
- name: Copy production config
|
- name: Copy production config
|
||||||
run: echo ${{ secrets.PRODUCTION_CONFIG }} > lib/app_config.dart
|
run: echo "${{ secrets.PRODUCTION_CONFIG }}" > lib/app_config.dart
|
||||||
- name: Build and release
|
- name: Build and release
|
||||||
env:
|
env:
|
||||||
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
|
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
|
||||||
@@ -57,7 +57,7 @@ jobs:
|
|||||||
- run: |
|
- run: |
|
||||||
flutter pub get
|
flutter pub get
|
||||||
- name: Copy production config
|
- name: Copy production config
|
||||||
run: echo ${{ secrets.PRODUCTION_CONFIG }} > lib/app_config.dart
|
run: echo "${{ secrets.PRODUCTION_CONFIG }}" > lib/app_config.dart
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
flutter build apk
|
flutter build apk
|
||||||
@@ -66,3 +66,15 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: android-stream-chat-v1
|
name: android-stream-chat-v1
|
||||||
path: packages/stream_chat_v1/build/app/outputs/apk/release/app-release.apk
|
path: packages/stream_chat_v1/build/app/outputs/apk/release/app-release.apk
|
||||||
|
- name: Configure AWS credentials
|
||||||
|
uses: aws-actions/configure-aws-credentials@v1
|
||||||
|
with:
|
||||||
|
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||||
|
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
|
aws-region: us-east-1
|
||||||
|
- name: Upload APK
|
||||||
|
run: |
|
||||||
|
cp build/app/outputs/apk/release/app-release.apk flutter-sample-app.apk
|
||||||
|
aws s3 cp flutter-sample-app.apk s3://${{ secrets.AWS_S3_BUCKET }} --sse AES256
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -27,8 +27,8 @@ class ProfileVerifyCubit extends Cubit<ProfileState> {
|
|||||||
final ProfileSignInUseCase _profileSignInUseCase;
|
final ProfileSignInUseCase _profileSignInUseCase;
|
||||||
|
|
||||||
void startChatting() async {
|
void startChatting() async {
|
||||||
emit(ProfileState(null, loading: true));
|
|
||||||
final file = state.file;
|
final file = state.file;
|
||||||
|
emit(ProfileState(file, loading: true));
|
||||||
final name = nameController.text;
|
final name = nameController.text;
|
||||||
await _profileSignInUseCase.verify(ProfileInput(
|
await _profileSignInUseCase.verify(ProfileInput(
|
||||||
imageFile: file,
|
imageFile: file,
|
||||||
|
|||||||
@@ -29,18 +29,6 @@ dependencies:
|
|||||||
lottie: ^1.0.1
|
lottie: ^1.0.1
|
||||||
collection: ^1.15.0-nullsafety.4
|
collection: ^1.15.0-nullsafety.4
|
||||||
|
|
||||||
dependency_overrides:
|
|
||||||
stream_chat:
|
|
||||||
git:
|
|
||||||
url: https://github.com/GetStream/stream-chat-flutter.git
|
|
||||||
ref: develop
|
|
||||||
path: packages/stream_chat
|
|
||||||
stream_chat_flutter_core:
|
|
||||||
git:
|
|
||||||
url: https://github.com/GetStream/stream-chat-flutter.git
|
|
||||||
ref: develop
|
|
||||||
path: packages/stream_chat_flutter_core
|
|
||||||
|
|
||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
flutter_launcher_icons: ^0.9.0
|
flutter_launcher_icons: ^0.9.0
|
||||||
test: any
|
test: any
|
||||||
|
|||||||
Reference in New Issue
Block a user