Skip to content

Commit 23a400e

Browse files
V5.14.0
1 parent 3814491 commit 23a400e

15 files changed

+998
-56
lines changed

CHANGELOG.md

Lines changed: 25 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,29 @@
1+
# V5.14.0
2+
3+
## stario
4+
- Added features
5+
* Added MCP31C and TSP650IISK.
6+
* Added Auto Interface Select function.
7+
8+
## starioextension
9+
- Added features
10+
* Added MCP31C and TSP650IISK.
11+
* Added Auto Interface Select function.
12+
* USB HID class (Keyboard mode) support for StarIoExtManager and IPeripheralCommandParser.
13+
14+
## SDK
15+
- Added Sample Codes
16+
* Added sample codes for Auto Interface Select function.
17+
18+
stario (Ver. 2.9.0)
19+
starioextension (Ver. 1.15.0)
20+
smcloudservices (Ver. 1.4.1)
21+
22+
123
# V5.13.0
224

325
Initial release for GitHub
426

5-
StarIOPort3.1.jar (Ver 2.8.0)
6-
starioextension.jar (Ver 1.14.0)
7-
smcloudservices.aar (Ver 1.4.1)
27+
stario (Ver. 2.8.0)
28+
starioextension (Ver. 1.14.0)
29+
smcloudservices (Ver. 1.4.1)

SDK/app/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ android {
99
minSdkVersion 21
1010
targetSdkVersion 29
1111

12-
versionCode 45
13-
versionName "5.13.0"
12+
versionCode 56
13+
versionName "5.14.0"
1414
}
1515
buildTypes {
1616
release {
@@ -21,8 +21,8 @@ android {
2121
}
2222

2323
dependencies {
24-
implementation 'com.starmicronics:stario:2.8.0'
25-
implementation 'com.starmicronics:starioextension:1.14.0'
24+
implementation 'com.starmicronics:stario:2.9.0'
25+
implementation 'com.starmicronics:starioextension:1.15.0'
2626
implementation 'com.starmicronics:smcloudservices:1.4.1'
2727
implementation 'androidx.appcompat:appcompat:1.1.0'
2828
implementation 'androidx.legacy:legacy-support-v4:1.0.0'

SDK/app/src/main/AndroidManifest.xml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,9 @@
2323
android:configChanges="orientation|screenSize"
2424
android:screenOrientation="portrait">
2525

26-
<meta-data android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" android:resource="@xml/device_filter" />
27-
2826
<intent-filter>
2927
<action android:name="android.intent.action.MAIN" />
3028
<category android:name="android.intent.category.LAUNCHER" />
31-
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
3229
</intent-filter>
3330
</activity>
3431

@@ -41,6 +38,15 @@
4138
android:name=".CommonActivity"
4239
android:screenOrientation="portrait" />
4340

41+
<activity
42+
android:name=".UsbAttachedActivity">
43+
<intent-filter>
44+
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
45+
</intent-filter>
46+
47+
<meta-data android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" android:resource="@xml/device_filter" />
48+
</activity>
49+
4450
</application>
4551

4652
</manifest>

0 commit comments

Comments
 (0)