Skip to content

Commit

Permalink
Update to 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DaisukeHohjoh committed Apr 8, 2023
1 parent 74ae741 commit a36b697
Show file tree
Hide file tree
Showing 13 changed files with 68 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.0.5
Version: 3.1.0

## Contents

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

```
dependencies {
implementation 'com.theta360:pluginlibrary:3.0.5'
implementation 'com.theta360:pluginlibrary:3.1.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.0.5'
def version = '3.1.0'
def repo = new File(rootDir, "repository")

android {
compileSdkVersion 29
defaultConfig {
minSdkVersion 25
targetSdkVersion 29
versionCode 13
versionCode 14
versionName "${version}"

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

static final String ACTION_BLUETOOTH_OFF = "com.theta360.plugin.ACTION_BLUETOOTH_OFF";
static final String ACTION_BLUETOOTH_ON = "com.theta360.plugin.ACTION_BLUETOOTH_ON";

static final String ACTION_GPS_OFF = "com.theta360.plugin.ACTION_GPS_TAG_RECORDING_OFF";
static final String ACTION_GPS_ON = "com.theta360.plugin.ACTION_GPS_TAG_RECORDING_ON";

static final String ACTION_DATABASE_UPDATE = "com.theta360.plugin.ACTION_DATABASE_UPDATE";
static final String TARGETS = "targets";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -458,6 +458,26 @@ public void notificationWlanCl() {
sendBroadcast(new Intent(Constants.ACTION_WLAN_CL));
}

/**
* Turn off/on Bluetooth
*/
public void notificationBluetoothOff() {
sendBroadcast(new Intent(Constants.ACTION_BLUETOOTH_OFF));
}
public void notificationBluetoothOn() {
sendBroadcast(new Intent(Constants.ACTION_BLUETOOTH_ON));
}

/**
* Turn off/on GNSS
*/
public void notificationGpsOff() {
sendBroadcast(new Intent(Constants.ACTION_GPS_OFF));
}
public void notificationGpsOn() {
sendBroadcast(new Intent(Constants.ACTION_GPS_ON));
}

/**
* Updating the Database in X Models
*/
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
343d2bf1942855b598b0ab2a3801622e
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
c61cb889d9f8500ab05de8eff35cecfee3091dbf
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.1.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 @@
c2873b8de0078f35ba91684dd23472ab
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fe6d9564fa67f5468b6c832942aefdf820a0d90d
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.0.5</release>
<release>3.1.0</release>
<versions>
<version>2.0.0</version>
<version>2.1.0</version>
Expand All @@ -13,7 +13,8 @@
<version>3.0.3</version>
<version>3.0.4</version>
<version>3.0.5</version>
<version>3.1.0</version>
</versions>
<lastUpdated>20230313165727</lastUpdated>
<lastUpdated>20230408023707</lastUpdated>
</versioning>
</metadata>
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3f704763ca195e114507c63d05691bab
4ca5edfec1a662147f9eaffd9bdb43da
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ea5aec5178e0aee0742e2b19fdb812170817815f
4849b90106c5da379091e98e6796361aa9e746ec

0 comments on commit a36b697

Please sign in to comment.