-
Notifications
You must be signed in to change notification settings - Fork 4
MS-621 Upgrades #96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MS-621 Upgrades #96
Conversation
luhmirin-s
commented
Aug 15, 2024
- Added regression test cases to ensure that API does not change during refactoring
- Update build tooling to latest versions
- Translated all files to Kotlin with small changes to make the implementation more "kotlin-like"
6daa3f6 to
081e40a
Compare
build.gradle
Outdated
| dependencies { | ||
| classpath "com.android.tools.build:gradle:7.4.0" | ||
| classpath "io.github.gradle-nexus:publish-plugin:1.3.0" | ||
| classpath "com.android.tools.build:gradle:8.3.2" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you use the latest gradle version ?
| distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-all.zip | ||
| distributionPath=wrapper/dists | ||
| zipStorePath=wrapper/dists | ||
| distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, here the wrapper version 8.7
| private val templates: MutableMap<FingerIdentifier, ByteArray> = mutableMapOf() | ||
| ) : Parcelable { | ||
|
|
||
| fun setTemplate(fingerId: FingerIdentifier, fingerTemplate: ByteArray) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What about face temeplates?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, I just translated the code explicitly not changing the API.
I will add a subtask to add the face templates well for the "improvements" part
…hange during refactoring
081e40a to
06b0b66
Compare