Skip to content

Commit 3adc5c2

Browse files
Merge pull request #630 from TakayukiHoshi1984/bugfix_keystore_password
Manager から出力したキーストアをパスワード0000で開けない問題を修正。プラグインSDKを2.7.2にアップデート。
2 parents 8173a79 + 9a0b76d commit 3adc5c2

15 files changed

Lines changed: 44 additions & 10 deletions

File tree

dConnectDevicePlugin/dConnectDeviceHost/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ dependencies {
7777
exclude module: 'animated-vector-drawable'
7878
exclude module: 'support-media-compat'
7979
}
80-
implementation 'org.deviceconnect:dconnect-device-plugin-sdk:2.7.1'
80+
implementation 'org.deviceconnect:dconnect-device-plugin-sdk:2.7.2'
8181
implementation project(':dconnect-demo-lib')
8282
implementation project(':libstreaming')
8383
implementation('com.serenegiant:common:2.12.5') {

dConnectDevicePlugin/dConnectDevicePluginSDK/dconnect-device-plugin-sdk/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ android {
88
minSdkVersion 14
99
targetSdkVersion 28
1010
versionCode 1
11-
versionName '2.7.1'
11+
versionName '2.7.2'
1212
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
1313
}
1414

dConnectDevicePlugin/dConnectDevicePluginSDK/dconnect-device-plugin-sdk/src/main/java/org/deviceconnect/android/ssl/EndPointKeyStoreManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public EndPointKeyStoreManager(final Context context, final String keyStorePath,
106106
*/
107107
public EndPointKeyStoreManager(final Context context, final String keyStorePath,
108108
final String keyStorePassword, final String alias) {
109-
this(context, keyStorePath, alias, keyStorePassword, DEFAULT_ROOT_CA);
109+
this(context, keyStorePath, keyStorePassword, alias, DEFAULT_ROOT_CA);
110110
}
111111

112112
/**
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<plugin-sdk>
3-
<version>2.7.1</version>
3+
<version>2.7.2</version>
44
</plugin-sdk>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
467305b52e6a308980ca3520b658283a
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ed5ce35b81abbec502c740734d1587fe03f5a7b3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4+
<modelVersion>4.0.0</modelVersion>
5+
<groupId>org.deviceconnect</groupId>
6+
<artifactId>dconnect-device-plugin-sdk</artifactId>
7+
<version>2.7.2</version>
8+
<packaging>aar</packaging>
9+
<dependencies>
10+
<dependency>
11+
<groupId>org.deviceconnect</groupId>
12+
<artifactId>dconnect-sdk-for-android</artifactId>
13+
<version>2.3.1</version>
14+
<scope>compile</scope>
15+
</dependency>
16+
<dependency>
17+
<groupId>com.android.support</groupId>
18+
<artifactId>support-v4</artifactId>
19+
<version>28.0.0</version>
20+
<scope>compile</scope>
21+
</dependency>
22+
<dependency>
23+
<groupId>org.bouncycastle</groupId>
24+
<artifactId>bcprov-jdk15on</artifactId>
25+
<version>1.46</version>
26+
<scope>compile</scope>
27+
</dependency>
28+
</dependencies>
29+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0e85fef2758d74b228eddcf4f21d2ce9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
d40c6d22f1d1e40d4f8ab6e841d9977d8e3f0245

0 commit comments

Comments
 (0)