Skip to content

Commit

Permalink
chore: packages updated and android issues resolved in at_follows_flu…
Browse files Browse the repository at this point in the history
…tter.
  • Loading branch information
CurtlyCritchlow committed Aug 15, 2024
1 parent cffc66a commit d4ee2a0
Show file tree
Hide file tree
Showing 7 changed files with 63 additions and 47 deletions.
49 changes: 42 additions & 7 deletions packages/at_follows_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,65 +1,100 @@
## 3.0.13:

- **FIX** Depreciated AtClientService methods replaced with AtAuthService methods
- **CHORE**: Major version increase of flutter_local_notifications from ^14.1.1 to ^17.2.2
- **CHORE**: Kotlin version updated from ^1.7.10 to 1.8.20
- **CHORE**: Android exported set to true in AndroidManifest.xml

## 3.0.12:

- **CHORE**: Major version increase of at_commons from ^3.0.55 to ^4.0.1

## 3.0.11

- **CHORE**: Updated dependencies
- **CHORE**: Lint fixes

## 3.0.10

- **CHORE**: Bumped all dependency versions
- Major version increase of permission_handler from ^9.2.0 to ^11.0.0

## 3.0.9

- **CHORE**: Replaced file_saver with at_file_saver

## 3.0.8

- **CHORE**: Updated dependencies and android gradle versions
- **CHORE**: Package description updated
- **FIX**: Removed flutter_qr_reader usage

## 3.0.7

- **FIX**: Solved dependency conflict

## 3.0.6

- **FIX**: Fixed getting details of following/follower list
- **FIX**: Fixed QR Scanner not working.

## 3.0.5

- Fix for at client dependency issue. Removed reference to deprecated SyncStrategy
- updated dependencies

## 3.0.4

- updated dependencies and documentation

## 3.0.3
- upgraded to latest dependencies

- upgraded to latest dependencies
- Fixes for follows screen bugs

## 3.0.2

- Upgraded to latest version of at_client
- Fixes for follows screen bugs

## 3.0.1

- Upgraded to latest version of at_client
- Fixes for follows screen bugs

## 3.0.0

- Resilient SDK changes uptake for monitor, notification and sync improvements

## 2.0.4

- ConnectionsService and ConnectionProvider instance exposed to app side

## 2.0.3

- Support for namespace migration changes

## 2.0.2

- Fix for setstate issue in init

## 2.0.1

- Fix sync related issues in follows list

## 2.0.0

- support for .wavi keys and minor bug fixes
- null-safety migration
## 1.0.0+2
- upgraded some packages to resolve dependency issues
## 1.0.0+1
- Notifications fix
## 1.0.0
- Initial version

## 1.0.0+2

- upgraded some packages to resolve dependency issues

## 1.0.0+1

- Notifications fix

## 1.0.0

- Initial version
3 changes: 2 additions & 1 deletion packages/at_follows_flutter/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ group 'com.atsign.at_follows_flutter'
version '1.0-SNAPSHOT'

buildscript {
ext.kotlin_version = '1.7.10'
ext.kotlin_version = '1.8.20'
repositories {
google()
jcenter()
Expand Down Expand Up @@ -32,6 +32,7 @@ android {
}
defaultConfig {
minSdkVersion 23
targetSdkVersion 32
}
lintOptions {
disable 'InvalidPackage'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,61 +1,41 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.atsign.at_follows_flutter_example">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.atsign.at_follows_flutter_example">
<!-- io.flutter.app.FlutterApplication is an android.app.Application that
calls FlutterMain.startInitialization(this); in its onCreate method.
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. -->
<application
android:name="${applicationName}"
android:label="at_follows_flutter_example"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<application android:name="${applicationName}" android:label="at_follows_flutter_example" android:icon="@mipmap/ic_launcher">
<activity android:name=".MainActivity" android:exported="true" android:launchMode="singleTop" android:theme="@style/LaunchTheme" android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode" android:hardwareAccelerated="true" android:windowSoftInputMode="adjustResize">
<!-- Specifies an Android theme to apply to this Activity as soon as
the Android process has started. This theme is visible to the user
while the Flutter UI initializes. After that, this theme continues
to determine the Window background behind the Flutter UI. -->
<meta-data
android:name="io.flutter.embedding.android.NormalTheme"
android:resource="@style/NormalTheme"
/>
<meta-data android:name="io.flutter.embedding.android.NormalTheme" android:resource="@style/NormalTheme" />
<!-- Displays an Android View that continues showing the launch screen
Drawable until Flutter paints its first frame, then this splash
screen fades out. A splash screen is useful to avoid any visual
gap between the end of Android's launch screen and the painting of
Flutter's first frame. -->
<meta-data
android:name="io.flutter.embedding.android.SplashScreenDrawable"
android:resource="@drawable/launch_background"
/>
<meta-data android:name="io.flutter.embedding.android.SplashScreenDrawable" android:resource="@drawable/launch_background" />
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
<intent-filter>
<intent-filter>
<!-- <data android:scheme="https" android:host="com.example.persona" /> -->
<data android:scheme = "atcompany" android:host = "persona.com"/>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- <category android:name="android.intent.category.LAUNCHER"/> -->
</intent-filter>
</activity>
<!-- Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
<meta-data
android:name="flutterEmbedding"
android:value="2" />
<meta-data android:name="flutterEmbedding" android:value="2" />
</application>
<meta-data
android:name="flutterEmbedding"
android:value="2" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<meta-data android:name="flutterEmbedding" android:value="2" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.USE_FULL_SCREEN_INTENT" />
Expand Down
2 changes: 1 addition & 1 deletion packages/at_follows_flutter/example/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
buildscript {
ext.kotlin_version = '1.7.10'
ext.kotlin_version = '1.8.20'
repositories {
google()
jcenter()
Expand Down
6 changes: 3 additions & 3 deletions packages/at_follows_flutter/example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -152,21 +152,21 @@ SPEC CHECKSUMS:
at_follows_flutter: cabf679ae84bc050016705c323901934a461c882
at_onboarding_flutter: e8219b6d0bfb236d3837ec3528871aebdcc56e8d
biometric_storage: 1400f1382af3a4cc2bf05340e13c3d8de873ceb9
device_info_plus: c6fb39579d0f423935b0c9ce7ee2f44b71b9fce6
device_info_plus: 97af1d7e84681a90d0693e63169a5d50e0839a0d
DKImagePickerController: b512c28220a2b8ac7419f21c491fc8534b7601ac
DKPhotoGallery: fdfad5125a9fdda9cc57df834d49df790dbb4179
file_picker: 15fd9539e4eb735dc54bae8c0534a7a9511a03de
file_selector_ios: f0670c1064a8c8450e38145d8043160105d0b97c
Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7
flutter_keychain: 01aabf894ffe8b01adfda1d9df21c210c1b4b452
flutter_local_notifications: 0c0b1ae97e741e1521e4c1629a459d04b9aec743
flutter_local_notifications: 4cde75091f6327eb8517fa068a0a5950212d2086
MTBBarcodeScanner: f453b33c4b7dfe545d8c6484ed744d55671788cb
package_info_plus: 58f0028419748fad15bf008b270aaa8e54380b1c
path_provider_foundation: 2b6b4c569c0fb62ec74538f866245ac84301af46
permission_handler_apple: 9878588469a2b0d0fc1e048d9f43605f92e6cec2
qr_code_scanner: bb67d64904c3b9658ada8c402e8b4d406d5d796e
SDWebImage: fc8f2d48bbfd72ef39d70e981bd24a3f3be53fec
share_plus: c3fef564749587fc939ef86ffb283ceac0baf9f5
share_plus: 8875f4f2500512ea181eef553c3e27dba5135aad
shared_preferences_foundation: fcdcbc04712aee1108ac7fda236f363274528f78
SwiftyGif: 93a1cc87bf3a51916001cf8f3d63835fb64c819f
url_launcher_ios: 5334b05cef931de560670eeae103fd3e431ac3fe
Expand Down
2 changes: 1 addition & 1 deletion packages/at_follows_flutter/example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencies:
flutter:
sdk: flutter
flutter_keychain: ^2.3.0
flutter_local_notifications: ^14.1.1
flutter_local_notifications: ^17.2.2
path_provider: ^2.1.1

dev_dependencies:
Expand Down
4 changes: 2 additions & 2 deletions packages/at_follows_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: at_follows_flutter
description: A Flutter plugin project that provides a basic social "follows"
functionality for atSigns. Provides a list of followers and following for
atSigns with the option to unfollow them.
version: 3.0.12
version: 3.0.13
homepage: https://docs.atsign.com/
repository: https://github.com/atsign-foundation/at_widgets

Expand All @@ -21,7 +21,7 @@ dependencies:
collection: ^1.17.0
flutter:
sdk: flutter
flutter_local_notifications: ^14.1.1
flutter_local_notifications: ^17.2.2
permission_handler: ^11.0.0
provider: ^6.0.5
qr_code_scanner: ^1.0.1
Expand Down

0 comments on commit d4ee2a0

Please sign in to comment.