From c05b88a706eaacabb70345db3a851b46efc87b4d Mon Sep 17 00:00:00 2001 From: theRookieCoder Date: Sun, 23 May 2021 13:08:07 +0530 Subject: [PATCH] Used forms and added a makefile. See CHANGELOG.md --- .gitignore | 9 +- CHANGELOG.md | 14 ++ android/app/build.gradle | 2 +- android/app/src/main/AndroidManifest.xml | 6 +- android/gradle.properties | 2 +- ios/Runner/Info.plist | 3 +- ...acheIndex-971d7343dfcc9e1a0756d86c31095cb8 | Bin 146 -> 146 bytes ios/build/XCBuildData/build.db | Bin 1163264 -> 1163264 bytes lib/HomePage.dart | 183 +++++++++++------- makefile | 24 +++ pubspec.lock | 18 +- pubspec.yaml | 4 +- 12 files changed, 170 insertions(+), 95 deletions(-) create mode 100644 makefile diff --git a/.gitignore b/.gitignore index 4104f9a..6a49ddb 100644 --- a/.gitignore +++ b/.gitignore @@ -38,7 +38,12 @@ lib/generated_plugin_registrant.dart # Symbolication related app.*.symbols -# Obfuscation related app.*.map.json -/ios/build/ +ios/build/ .firebase/ + +# build related + +*.apk +*.ipa +Payload diff --git a/CHANGELOG.md b/CHANGELOG.md index 860e096..5299c45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [1.3.2] + +- Added makefile with building related functionality +- Removed landscape orientations +- Upgraded to Flutter 2.2 and Dart 2.13 +- Updated Gradle Java path in `gradle.properties` +- Raised `minSdkVersion` in `build.gradle` +- Updated permissions in `AndroidManifest.xml` +- Refactored some code +- Made the open log file force webview +- Used a `Form` for the `TextField` and added validators +- Removed `maxLength` in `TextField`s +- Updated FAB to work with validators + ## [1.3.1] - Fixed keyboard immediately closing diff --git a/android/app/build.gradle b/android/app/build.gradle index fe1ad01..6e4b32e 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -38,7 +38,7 @@ android { defaultConfig { applicationId "com.therookiecoder.bp_logger" - minSdkVersion 16 + minSdkVersion 19 targetSdkVersion 29 versionCode flutterVersionCode.toInteger() versionName flutterVersionName diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index bc1b347..12af0c2 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -5,8 +5,7 @@ In most cases you can leave this as-is, but you if you want to provide additional functionality it is fine to subclass or reimplement FlutterApplication and put your custom class here. --> - - + + android:windowSoftInputMode="adjustResize" + android:screenOrientation="portrait">