Skip to content

Commit

Permalink
Update to 3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DaisukeHohjoh committed Oct 16, 2023
1 parent c24ff8c commit 847f481
Show file tree
Hide file tree
Showing 13 changed files with 51 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# RICOH THETA Plug-in Library

Version: 3.2.0
Version: 3.3.0

## Contents

Expand Down Expand Up @@ -104,7 +104,7 @@ allprojects {

```
dependencies {
implementation 'com.theta360:pluginlibrary:3.2.0'
implementation 'com.theta360:pluginlibrary:3.3.0'
}
```

Expand Down
4 changes: 2 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
apply plugin: 'com.android.library'
apply plugin: 'maven'

def version = '3.2.0'
def version = '3.3.0'
def repo = new File(rootDir, "repository")

android {
compileSdkVersion 29
defaultConfig {
minSdkVersion 25
targetSdkVersion 29
versionCode 15
versionCode 16
versionName "${version}"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ final class Constants {
static final String ACTION_BATTERY_CHARGING_SUSPEND = "com.theta360.plugin.ACTION_BATTERY_CHARGING_SUSPEND";
static final String ACTION_BATTERY_CHARGING_RESUME = "com.theta360.plugin.ACTION_BATTERY_CHARGING_RESUME";

static final String ACTION_POWER_OFF = "com.theta360.plugin.ACTION_POWER_OFF";

static final String ACTION_PLUGIN_WEBAPI_CAMERA_OPEN = "com.theta360.plugin.ACTION_PLUGIN_WEBAPI_CAMERA_OPEN";
static final String ACTION_PLUGIN_WEBAPI_CAMERA_CLOSE = "com.theta360.plugin.ACTION_PLUGIN_WEBAPI_CAMERA_CLOSE";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -524,6 +524,13 @@ public void notificationBatteryChargingResume() {
sendBroadcast(new Intent(Constants.ACTION_BATTERY_CHARGING_RESUME));
}

/**
* Power Off
*/
public void notificationPowerOff() {
sendBroadcast(new Intent(Constants.ACTION_POWER_OFF));
}

/**
* Start of camera control by WebApi
*/
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
6fa5f65e26b2723264cbb7ea591dc145
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
b2bb0f660ddaf39b3a1e33296bcaec6725e67101
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="UTF-8"?>
<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"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.theta360</groupId>
<artifactId>pluginlibrary</artifactId>
<version>3.3.0</version>
<packaging>aar</packaging>
<dependencies>
<dependency>
<groupId>com.android.support</groupId>
<artifactId>appcompat-v7</artifactId>
<version>25.4.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.sanselan</groupId>
<artifactId>sanselan</artifactId>
<version>0.97-incubator</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>net.danlew</groupId>
<artifactId>android.joda</artifactId>
<version>2.9.9.4</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0a377f224cfd8b19b072aee5885bc9b0
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
e4d1a9694497158cc6478c83c97232da4dc47e12
5 changes: 3 additions & 2 deletions repository/com/theta360/pluginlibrary/maven-metadata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<groupId>com.theta360</groupId>
<artifactId>pluginlibrary</artifactId>
<versioning>
<release>3.2.0</release>
<release>3.3.0</release>
<versions>
<version>2.0.0</version>
<version>2.1.0</version>
Expand All @@ -15,7 +15,8 @@
<version>3.0.5</version>
<version>3.1.0</version>
<version>3.2.0</version>
<version>3.3.0</version>
</versions>
<lastUpdated>20230704134220</lastUpdated>
<lastUpdated>20230915022031</lastUpdated>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
@@ -1 +1 @@
07332d7a0103b481190984ea1a71bd97
025784f79758d91e85d8577e1b7ac630
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4844b35bc12976239c146321177d997e84779623
b7ebf858771a77bf785f138d2ba17fd089647236

0 comments on commit 847f481

Please sign in to comment.