Skip to content

Commit 3d44b7f

Browse files
committed
fix 1.0.7
1 parent 5b863f7 commit 3d44b7f

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ mkrelease:
2828
.ONESHELL:
2929
sign:
3030
cd platforms/android/app/build/outputs/apk/release/ && \
31+
rm -f app-release-unsigned-aligned.apk && \
3132
/Users/hansr/Library/Android//sdk/build-tools/30.0.3/zipalign -v -p 4 app-release-unsigned.apk app-release-unsigned-aligned.apk && \
3233
/Users/hansr/Library/Android//sdk/build-tools/30.0.3/apksigner sign --ks ~/src/rdzwx-go/my-release-key.jks --out app-release.apk app-release-unsigned-aligned.apk
3334

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"cordova-electron": "^3.0.0",
2828
"cordova-plugin-androidx-adapter": "^1.1.3",
2929
"cordova-plugin-inappbrowser": "^5.0.0",
30-
"rdzwx-plugin": "file:../rdzwx-plugin"
30+
"rdzwx-plugin": "github:dl9rdz/rdzwx-lugin"
3131
},
3232
"cordova": {
3333
"plugins": {

www/js/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ function onDeviceReady() {
8585
.then(response => response.json())
8686
.then(data => {
8787
console.log('Success:', data);
88-
if(data.version > "1.0.6") {
88+
if(data.version > "1.0.7") {
8989
if(window.confirm("New version "+ data.version + " available! Download?")) {
9090
console.log("opening "+data.url);
9191
cordova.InAppBrowser.open(data.url, "_system");

0 commit comments

Comments
 (0)