Skip to content

Commit 6d8b280

Browse files
committed
Update to Kotlin 2.0 and add namespace
1 parent f5ebeab commit 6d8b280

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 0.5.0
2+
3+
* Add namespace for Android
4+
* Update Kotlin to 2.0.0
5+
16
## 0.4.0
27

38
* Upgrade libserialport sources to 0.1.1

android/build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
group 'org.sigrok.flutter_libserialport'
2-
version '1.0-SNAPSHOT'
2+
version '0.5.0-SNAPSHOT'
33

44
buildscript {
5-
ext.kotlin_version = '1.9.20'
5+
ext.kotlin_version = '2.0.0'
66
repositories {
77
google()
88
jcenter()
@@ -25,7 +25,8 @@ apply plugin: 'com.android.library'
2525
apply plugin: 'kotlin-android'
2626

2727
android {
28-
compileSdkVersion 33
28+
namespace 'org.sigrok.flutter_libserialport'
29+
compileSdk 34
2930

3031
sourceSets {
3132
main.java.srcDirs += 'src/main/kotlin'

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: flutter_libserialport
22
description: A simple wrapper around libserialport utilizing Flutter's
33
build system to build and deploy the C-library for the target platform.
4-
version: 0.4.0
4+
version: 0.5.0
55
homepage: https://github.com/jpnurmi/flutter_libserialport
66
repository: https://github.com/jpnurmi/flutter_libserialport
77
issue_tracker: https://github.com/jpnurmi/flutter_libserialport/issues

0 commit comments

Comments
 (0)