diff options
| author | mavlonerkinboev <mavlonbek.ibragimov007@gmail.com> | 2021-11-03 09:48:29 +0500 | 
|---|---|---|
| committer | mavlonerkinboev <mavlonbek.ibragimov007@gmail.com> | 2021-11-03 09:48:29 +0500 | 
| commit | 843c45d5dc78d8bcbd15e0cf72abe687f66674e3 (patch) | |
| tree | 1902eaa752cae27a6c9cea32fd58b722ff92687b /android/app | |
| parent | 83ce4a8d779075bf1005cdccf67d56b2448328e4 (diff) | |
Fixed gradle error by removing 'new' keyword
Diffstat (limited to 'android/app')
| -rwxr-xr-x | android/app/build.gradle | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/android/app/build.gradle b/android/app/build.gradle index 5dcc607..960d46d 100755 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -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 GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")  }  def flutterVersionCode = localProperties.getProperty('flutter.versionCode') @@ -29,7 +29,7 @@ android {      defaultConfig {          // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). -        applicationId "com.mavlondev.recepts" +        applicationId "com.mavlusehcka.recipes"          minSdkVersion 16          targetSdkVersion 30          versionCode flutterVersionCode.toInteger() |