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">