Skip to content

Commit

Permalink
Merge pull request #31 from shankari/only_support_token_auth
Browse files Browse the repository at this point in the history
👽 Support rename of JWTAuth to OPCodeAuth
  • Loading branch information
shankari authored Mar 8, 2023
2 parents baa28ee + ac64080 commit c9ffbc8
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-plugin-em-server-communication",
"version": "1.2.3",
"version": "1.2.5",
"description": "Package that handles communication with the server",
"license": "BSD-3-clause",
"cordova": {
Expand Down
10 changes: 9 additions & 1 deletion plugin.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="cordova-plugin-em-server-communication"
version="1.2.4">
version="1.2.5">

<name>ServerComm</name>
<description>Abstraction for communication settings, and for making both GET
Expand Down Expand Up @@ -47,6 +47,14 @@
<param name="ios-package" value="BEMCommunicationHelperPlugin" />
</feature>
</config-file>
<podspec>
<config>
<source url="https://cdn.cocoapods.org/"/>
</config>
<pods use-frameworks="true">
<pod name="GTMSessionFetcher" spec="~> 3.1.0" />
</pods>
</podspec>

<header-file src="src/ios/BEMCommunicationHelper.h"/>
<source-file src="src/ios/BEMCommunicationHelper.m"/>
Expand Down
2 changes: 1 addition & 1 deletion src/android/CommunicationHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import java.net.URL;

import edu.berkeley.eecs.emission.cordova.connectionsettings.ConnectionSettings;
import edu.berkeley.eecs.emission.cordova.jwtauth.AuthTokenCreationFactory;
import edu.berkeley.eecs.emission.cordova.opcodeauth.AuthTokenCreationFactory;
import edu.berkeley.eecs.emission.cordova.unifiedlogger.Log;

import edu.berkeley.eecs.emission.R;
Expand Down

0 comments on commit c9ffbc8

Please sign in to comment.