Skip to content

Commit b51d4aa

Browse files
authored
Upgrade dependencies + ios xcframework (#81)
1 parent d94616b commit b51d4aa

File tree

144 files changed

+2025
-1565
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

144 files changed

+2025
-1565
lines changed

.github/workflows/example-docker.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ jobs:
1010
web:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
14-
- uses: docker/setup-qemu-action@v1
15-
- uses: docker/setup-buildx-action@v1
16-
- uses: docker/login-action@v1
13+
- uses: actions/checkout@v4
14+
- uses: docker/setup-qemu-action@v3
15+
- uses: docker/setup-buildx-action@v3
16+
- uses: docker/login-action@v3
1717
with:
1818
registry: ghcr.io
1919
username: ${{ github.repository_owner }}
2020
password: ${{ secrets.CR_PAT }}
21-
- uses: docker/build-push-action@v2
21+
- uses: docker/build-push-action@v6
2222
with:
2323
context: .
2424
file: ./example/Dockerfile

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
with:
1414
fetch-depth: 0
1515
- uses: scottbrenner/generate-changelog-action@master

.github/workflows/tests_android.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ jobs:
1111
e2e:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
15-
- uses: actions/setup-java@v3
14+
- uses: actions/checkout@v4
15+
- uses: actions/setup-java@v4
1616
with:
1717
distribution: 'temurin'
1818
java-version: '17'
19-
- uses: android-actions/setup-android@v2
19+
- uses: android-actions/setup-android@v3
2020
- uses: subosito/flutter-action@main
2121
with:
2222
flutter-version: '3.x'

.github/workflows/tests_browser.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
e2e:
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- uses: subosito/flutter-action@main
1717
with:
1818
flutter-version: '3.x'

.github/workflows/tests_ios.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: futureware-tech/simulator-action@v1
1515
with:
1616
os: iOS
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818
- uses: subosito/flutter-action@main
1919
with:
2020
flutter-version: '3.x'

.github/workflows/tests_linux.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
e2e:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- uses: subosito/flutter-action@main
1616
with:
1717
flutter-version: '3.x'

.github/workflows/tests_macos.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
e2e:
1212
runs-on: macos-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- uses: subosito/flutter-action@main
1616
with:
1717
flutter-version: '3.x'

.github/workflows/tests_windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
e2e:
1212
runs-on: windows-latest
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- uses: subosito/flutter-action@main
1616
with:
1717
flutter-version: '3.x'

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 3.7.0
2+
- Updates binaries + Add XCFramework for ios
3+
14
## 3.6.6
25
- Revert "Fix build on web #77"
36

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ default: test
33
test:
44
cd example && flutter test integration_test/app_test.dart
55

6+
fmt:
7+
dart format . && dart fix --apply
8+
cd example && dart format . && dart fix --apply
9+
610
upgrade: upgrade-libs upgrade-flatbuffers
711

812
upgrade-libs:

analysis_options.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
include: package:flutter_lints/flutter.yaml
2+
13
analyzer:
24
exclude:
35
- example/**

android/build.gradle

+45-25
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,73 @@
1-
group 'dev.jerson.fat_rsa'
2-
version '1.0'
1+
group = "dev.jerson.fast_rsa"
2+
version = "1.0-SNAPSHOT"
33

44
buildscript {
5+
ext.kotlin_version = "1.8.22"
56
repositories {
67
google()
78
mavenCentral()
89
}
910

1011
dependencies {
11-
classpath 'com.android.tools.build:gradle:7.1.0'
12+
classpath("com.android.tools.build:gradle:8.1.0")
13+
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version")
1214
}
1315
}
1416

15-
rootProject.allprojects {
17+
allprojects {
1618
repositories {
1719
google()
1820
mavenCentral()
1921
}
2022
}
2123

22-
apply plugin: 'com.android.library'
24+
apply plugin: "com.android.library"
25+
apply plugin: "kotlin-android"
2326

2427
android {
25-
// Conditional for compatibility with AGP <4.2.
2628
if (project.android.hasProperty("namespace")) {
27-
namespace 'dev.jerson.fast_rsa'
29+
namespace = "dev.jerson.fast_rsa"
2830
}
29-
compileSdkVersion 31
3031

31-
defaultConfig {
32-
minSdkVersion 19
33-
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
32+
compileSdk = 34
33+
34+
compileOptions {
35+
sourceCompatibility = JavaVersion.VERSION_1_8
36+
targetCompatibility = JavaVersion.VERSION_1_8
3437
}
35-
lintOptions {
36-
disable 'InvalidPackage'
38+
39+
kotlinOptions {
40+
jvmTarget = JavaVersion.VERSION_1_8
41+
}
42+
43+
sourceSets {
44+
main {
45+
java.srcDirs += "src/main/kotlin"
46+
jniLibs.srcDirs = ['src/main/jniLibs']
47+
}
48+
test {
49+
java.srcDirs += "src/test/kotlin"
50+
}
3751
}
38-
}
3952

40-
task nativeLibsToJar(type: Jar, description: 'create a jar archive of the native libs') {
41-
destinationDirectory.set(file("$buildDir/native-libs"))
42-
archiveBaseName = 'native-libs'
43-
from fileTree(dir: 'libs', include: '**/*.so')
44-
into 'lib/'
45-
}
53+
defaultConfig {
54+
minSdk = 21
55+
}
4656

47-
tasks.withType(JavaCompile) {
48-
compileTask -> compileTask.dependsOn(nativeLibsToJar)
49-
}
57+
dependencies {
58+
testImplementation("org.jetbrains.kotlin:kotlin-test")
59+
testImplementation("org.mockito:mockito-core:5.0.0")
60+
}
61+
62+
testOptions {
63+
unitTests.all {
64+
useJUnitPlatform()
5065

51-
dependencies {
52-
api fileTree(dir: "$buildDir/native-libs", include: 'native-libs.jar')
66+
testLogging {
67+
events "passed", "skipped", "failed", "standardOut", "standardError"
68+
outputs.upToDateWhen {false}
69+
showStandardStreams = true
70+
}
71+
}
72+
}
5373
}

android/gradle.properties

-3
This file was deleted.

android/gradle/wrapper/gradle-wrapper.properties

-5
This file was deleted.

android/src/main/java/dev/jerson/fast_rsa/FastRsaPlugin.java

-36
This file was deleted.
Binary file not shown.
Binary file not shown.
445 KB
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
package dev.jerson.fast_rsa
2+
3+
import androidx.annotation.NonNull
4+
5+
import io.flutter.embedding.engine.plugins.FlutterPlugin
6+
import io.flutter.plugin.common.MethodCall
7+
import io.flutter.plugin.common.MethodChannel
8+
import io.flutter.plugin.common.MethodChannel.MethodCallHandler
9+
import io.flutter.plugin.common.MethodChannel.Result
10+
11+
/** FastRsaPlugin */
12+
class FastRsaPlugin: FlutterPlugin, MethodCallHandler {
13+
/// The MethodChannel that will the communication between Flutter and native Android
14+
///
15+
/// This local reference serves to register the plugin with the Flutter Engine and unregister it
16+
/// when the Flutter Engine is detached from the Activity
17+
private lateinit var channel : MethodChannel
18+
19+
override fun onAttachedToEngine(flutterPluginBinding: FlutterPlugin.FlutterPluginBinding) {
20+
channel = MethodChannel(flutterPluginBinding.binaryMessenger, "fast_rsa")
21+
channel.setMethodCallHandler(this)
22+
}
23+
24+
override fun onMethodCall(call: MethodCall, result: Result) {
25+
if (call.method == "getPlatformVersion") {
26+
result.success("Android ${android.os.Build.VERSION.RELEASE}")
27+
} else {
28+
result.notImplemented()
29+
}
30+
}
31+
32+
override fun onDetachedFromEngine(binding: FlutterPlugin.FlutterPluginBinding) {
33+
channel.setMethodCallHandler(null)
34+
}
35+
}

example/analysis_options.yaml

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# This file configures the analyzer, which statically analyzes Dart code to
2+
# check for errors, warnings, and lints.
3+
#
4+
# The issues identified by the analyzer are surfaced in the UI of Dart-enabled
5+
# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
6+
# invoked from the command line by running `flutter analyze`.
7+
8+
# The following line activates a set of recommended lints for Flutter apps,
9+
# packages, and plugins designed to encourage good coding practices.
10+
include: package:flutter_lints/flutter.yaml
11+
12+
linter:
13+
# The lint rules applied to this project can be customized in the
14+
# section below to disable rules from the `package:flutter_lints/flutter.yaml`
15+
# included above or to enable additional rules. A list of all available lints
16+
# and their documentation is published at https://dart.dev/lints.
17+
#
18+
# Instead of disabling a lint rule for the entire project in the
19+
# section below, it can also be suppressed for a single line of code
20+
# or a specific dart file by using the `// ignore: name_of_lint` and
21+
# `// ignore_for_file: name_of_lint` syntax on the line or in the file
22+
# producing the lint.
23+
rules:
24+
# avoid_print: false # Uncomment to disable the `avoid_print` rule
25+
# prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
26+
27+
# Additional information about this file can be found at
28+
# https://dart.dev/guides/language/analysis-options

example/android/.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ gradle-wrapper.jar
77
GeneratedPluginRegistrant.java
88

99
# Remember to never publicly share your keystore.
10-
# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
10+
# See https://flutter.dev/to/reference-keystore
1111
key.properties
1212
**/*.keystore
1313
**/*.jks

0 commit comments

Comments
 (0)