Skip to content

Commit

Permalink
Fixed app crash during record audio
Browse files Browse the repository at this point in the history
  • Loading branch information
ariessa committed May 18, 2021
1 parent 97b09a8 commit 654d644
Show file tree
Hide file tree
Showing 14 changed files with 19 additions and 17 deletions.
Binary file modified android/.gradle/5.6.2/executionHistory/executionHistory.bin
Binary file not shown.
Binary file modified android/.gradle/5.6.2/executionHistory/executionHistory.lock
Binary file not shown.
Binary file modified android/.gradle/5.6.2/fileHashes/fileHashes.bin
Binary file not shown.
Binary file modified android/.gradle/5.6.2/fileHashes/fileHashes.lock
Binary file not shown.
Binary file modified android/.gradle/5.6.2/fileHashes/resourceHashesCache.bin
Binary file not shown.
Binary file modified android/.gradle/5.6.2/javaCompile/classAnalysis.bin
Binary file not shown.
Binary file modified android/.gradle/5.6.2/javaCompile/jarAnalysis.bin
Binary file not shown.
Binary file modified android/.gradle/5.6.2/javaCompile/javaCompile.lock
Binary file not shown.
Binary file modified android/.gradle/5.6.2/javaCompile/taskHistory.bin
Binary file not shown.
Binary file modified android/.gradle/buildOutputCleanup/buildOutputCleanup.lock
Binary file not shown.
Binary file modified android/.gradle/buildOutputCleanup/outputFiles.bin
Binary file not shown.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ if (localPropertiesFile.exists()) {

def flutterRoot = localProperties.getProperty('flutter.sdk')
if (flutterRoot == null) {
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
throw new FileNotFoundException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
}

def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
Expand Down Expand Up @@ -39,7 +39,7 @@ android {

defaultConfig {
applicationId "com.ariessa.melofy"
minSdkVersion 25
minSdkVersion 26
targetSdkVersion 29
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
Expand Down
2 changes: 2 additions & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ buildscript {
ext.kotlin_version = '1.3.50'
repositories {
google()
mavenCentral()
jcenter()
}

Expand All @@ -15,6 +16,7 @@ buildscript {
allprojects {
repositories {
google()
mavenCentral()
jcenter()
}
}
Expand Down
30 changes: 15 additions & 15 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -56,21 +56,21 @@ packages:
name: cloud_firestore
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.5"
version: "1.0.7"
cloud_firestore_platform_interface:
dependency: transitive
description:
name: cloud_firestore_platform_interface
url: "https://pub.dartlang.org"
source: hosted
version: "4.0.1"
version: "4.0.3"
cloud_firestore_web:
dependency: transitive
description:
name: cloud_firestore_web
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.5"
version: "1.0.7"
collection:
dependency: transitive
description:
Expand Down Expand Up @@ -119,35 +119,35 @@ packages:
name: file
url: "https://pub.dartlang.org"
source: hosted
version: "6.1.0"
version: "6.1.1"
firebase_auth:
dependency: "direct main"
description:
name: firebase_auth
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.0"
version: "1.2.0"
firebase_auth_platform_interface:
dependency: transitive
description:
name: firebase_auth_platform_interface
url: "https://pub.dartlang.org"
source: hosted
version: "4.1.0"
version: "4.2.3"
firebase_auth_web:
dependency: transitive
description:
name: firebase_auth_web
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.6"
version: "1.1.3"
firebase_core:
dependency: "direct main"
description:
name: firebase_core
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.1"
version: "1.2.0"
firebase_core_platform_interface:
dependency: transitive
description:
Expand All @@ -161,28 +161,28 @@ packages:
name: firebase_core_web
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.3"
version: "1.1.0"
firebase_storage:
dependency: "direct main"
description:
name: firebase_storage
url: "https://pub.dartlang.org"
source: hosted
version: "8.0.6"
version: "8.1.0"
firebase_storage_platform_interface:
dependency: transitive
description:
name: firebase_storage_platform_interface
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.4"
version: "2.1.0"
firebase_storage_web:
dependency: transitive
description:
name: firebase_storage_web
url: "https://pub.dartlang.org"
source: hosted
version: "1.0.6"
version: "1.1.0"
flutter:
dependency: "direct main"
description: flutter
Expand Down Expand Up @@ -232,7 +232,7 @@ packages:
name: google_fonts
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.0"
version: "2.1.0"
http:
dependency: "direct main"
description:
Expand Down Expand Up @@ -351,7 +351,7 @@ packages:
name: path_provider_windows
url: "https://pub.dartlang.org"
source: hosted
version: "2.0.0"
version: "2.0.1"
pedantic:
dependency: transitive
description:
Expand All @@ -372,7 +372,7 @@ packages:
name: permission_handler_platform_interface
url: "https://pub.dartlang.org"
source: hosted
version: "3.2.0"
version: "3.3.0"
platform:
dependency: transitive
description:
Expand Down

0 comments on commit 654d644

Please sign in to comment.