Skip to content

Commit 8160395

Browse files
本番環境からaarをダウンロードする様に修正。
1 parent 5480244 commit 8160395

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

modules/deviceconnect-codegen/src/main/java/org/deviceconnect/codegen/plugin/AndroidPluginCodegenConfig.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public enum ConnectionType {
3030
BROADCAST,
3131
BINDER
3232
}
33-
private static final String DEVICE_PLUGIN_SDK_VERSION_NAME = "2.8.4.9";
33+
private static final String DEVICE_PLUGIN_SDK_VERSION_NAME = "2.8.4";
3434
private final String pluginModuleFolder = "plugin";
3535
private final String projectFolder = pluginModuleFolder + "/src/main";
3636
private final String sourceFolder = projectFolder + "/java";

samples/templates/deviceConnectAndroidPlugin/gradleFiles/3_x_x/plugin.2.8.4.build.gradle.mustache

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ android {
2323
versionCode 1
2424
versionName '1.0.0'
2525
}
26-
26+
2727
compileOptions {
2828
sourceCompatibility 1.8
2929
targetCompatibility 1.8
@@ -52,19 +52,19 @@ android {
5252
exclude 'META-INF/LICENSE'
5353
exclude 'META-INF/NOTICE'
5454
}
55-
55+
5656
tasks.withType(JavaCompile) {
5757
options.encoding = 'UTF-8'
5858
}
5959
repositories {
6060
maven {
6161
name = "DeviceConnect-Android"
62-
url = uri("https://maven.pkg.github.com/TakayukiHoshi1984/DeviceConnect-Android")
62+
url = uri("https://maven.pkg.github.com/DeviceConnect/DeviceConnect-Android")
6363
6464
credentials {
6565
username = System.getenv("GPR_USER") ?: githubProperties['gpr.usr']
6666
password = System.getenv("GPR_API_KEY") ?: githubProperties['gpr.key']
6767
}
6868
}
6969
}
70-
}
70+
}

0 commit comments

Comments
 (0)