Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2021 Approov Integration Examples
Copyright (c) 2021-2025 Approov Integration Examples

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ artifacts.add("default", file('approov-sdk.aar'))

dependencies {
implementation 'com.squareup.okhttp3:okhttp:4.12.0'
implementation 'io.approov:approov-android-sdk:3.3.0'
implementation 'io.approov:approov-android-sdk:3.4.1'
}

Large diffs are not rendered by default.

409 changes: 308 additions & 101 deletions ios/Classes/ApproovHttpClientPlugin.m

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions ios/approov_service_flutter_httpclient.podspec
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
Pod::Spec.new do |s|
s.name = 'approov_service_flutter_httpclient'
s.version = '0.0.4'
s.version = '3.4.0'
s.summary = 'Flutter plugin for accessing Approov SDK attestation services.'
s.description = <<-DESC
A Flutter plugin using mobile API protection provided by the Approov SDK. If the provided Approov SDK is configured to protect an API, then the plugin will automatically set up pinning and add relevant headers for any request to the API.
DESC
s.homepage = 'https://github.com/approov/approov_service_flutter_httpclient'
s.license = { :type => 'BSD', :file => '../LICENSE' }
s.author = { 'CriticalBlue' => 'ivol@criticalblue.com' }
s.license = { :type => 'MIT', :file => '../LICENSE' }
s.author = { 'Approov Ltd' => 'support@approov.io' }
s.source = { :http => 'https://github.com/approov/approov-service-flutter-httpclient' }
#s.documentation_url = 'https://pub.dev/packages/approov-service-flutter-httpclient'
s.source_files = 'Classes/**/*'
s.public_header_files = 'Classes/**/*.h'
s.dependency 'Flutter'
s.dependency 'approov-ios-sdk', '~> 3.3.1'
s.dependency 'approov-ios-sdk', '~> 3.4.0'
s.platform = :ios, '12.0'
# Flutter.framework does not contain an i386 slice.
s.pod_target_xcconfig = { 'DEFINES_MODULE' => 'YES', 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'i386' }
Expand Down
Loading