Skip to content

Commit

Permalink
feat(sapling): show sapling transaction details, select tezos account…
Browse files Browse the repository at this point in the history
… to wrap signed sapling transaction
  • Loading branch information
godenzim committed May 24, 2021
1 parent 7a1baaf commit d06d0da
Show file tree
Hide file tree
Showing 24 changed files with 5,467 additions and 9,425 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ unit:
script:
- docker run --name unit-$CI_COMMIT_SHA $GOOGLE_TAG npm run test-ci
- docker run --name lint-$CI_COMMIT_SHA $GOOGLE_TAG npm run lint-ci
- docker cp unit-$CI_COMMIT_SHA:/app/coverage/lcov.info lcov.info
- docker cp unit-$CI_COMMIT_SHA:/app/src/coverage/report-lcov/lcov.info lcov.info
- docker cp lint-$CI_COMMIT_SHA:/app/lintReport.json lintReport.json
after_script:
- docker rm unit-$CI_COMMIT_SHA
Expand Down
8 changes: 4 additions & 4 deletions android/app/capacitor.build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ android {

apply from: "../capacitor-cordova-android-plugins/cordova.variables.gradle"
dependencies {

implementation "com.android.support:support-v4:28.+"
implementation "com.android.support:appcompat-v7:28.+"
implementation project(':capacitor-community-barcode-scanner')
implementation "androidx.legacy:legacy-support-v4:1.+"
implementation "androidx.appcompat:appcompat:1.+"
}
apply from: "../../node_modules/cordova-plugin-qrscanner/src/android/qrscanner.gradle"


if (hasProperty('postBuildExtras')) {
postBuildExtras()
Expand Down
2 changes: 2 additions & 0 deletions android/app/src/main/java/it/airgap/wallet/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import android.os.Bundle;

import com.dutchconcepts.capacitor.barcodescanner.BarcodeScanner;
import com.getcapacitor.BridgeActivity;
import com.getcapacitor.Plugin;

Expand All @@ -20,6 +21,7 @@ public void onCreate(Bundle savedInstanceState) {
// Additional plugins you've installed go here
// Ex: add(TotallyAwesomePlugin.class);
add(AppInfo.class);
add(BarcodeScanner.class);
add(SaplingNative.class);
}});
}
Expand Down
4 changes: 0 additions & 4 deletions android/app/src/main/res/xml/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
<widget version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<access origin="*" />

<feature name="QRScanner">
<param name="android-package" value="com.bitpay.cordova.qrscanner.QRScanner"/>
</feature>

<feature name="SQLitePlugin">
<param name="android-package" value="io.sqlc.SQLitePlugin"/>
</feature>
Expand Down
3 changes: 3 additions & 0 deletions android/capacitor.settings.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
// DO NOT EDIT THIS FILE! IT IS GENERATED EACH TIME "capacitor update" IS RUN
include ':capacitor-android'
project(':capacitor-android').projectDir = new File('../node_modules/@capacitor/android/capacitor')

include ':capacitor-community-barcode-scanner'
project(':capacitor-community-barcode-scanner').projectDir = new File('../node_modules/@capacitor-community/barcode-scanner/android')
4 changes: 2 additions & 2 deletions ios/App/App.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -256,10 +256,10 @@
buildActionMask = 2147483647;
files = (
);
inputPaths = (
inputFileListPaths = (
);
name = "[CP] Embed Pods Frameworks";
outputPaths = (
outputFileListPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
Expand Down
4 changes: 0 additions & 4 deletions ios/App/App/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@
<widget version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:cdv="http://cordova.apache.org/ns/1.0">
<access origin="*" />

<feature name="QRScanner">
<param name="ios-package" value="QRScanner"/>
</feature>

<feature name="SQLitePlugin">
<param name="ios-package" value="SQLitePlugin"/>
</feature>
Expand Down
1 change: 1 addition & 0 deletions ios/App/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ def capacitor_pods
# Automatic Capacitor Pod dependencies, do not delete
pod 'Capacitor', :path => '../../node_modules/@capacitor/ios'
pod 'CapacitorCordova', :path => '../../node_modules/@capacitor/ios'
pod 'CapacitorCommunityBarcodeScanner', :path => '../../node_modules/@capacitor-community/barcode-scanner'
pod 'CordovaPlugins', :path => '../capacitor-cordova-ios-plugins'
# Do not delete
end
Expand Down
Loading

0 comments on commit d06d0da

Please sign in to comment.