Updated on 2026-08-14
This commit is contained in:
parent
52ce16bb09
commit
8a0b654663
24 changed files with 314 additions and 279 deletions
BIN
.idea/caches/build_file_checksums.ser
generated
BIN
.idea/caches/build_file_checksums.ser
generated
Binary file not shown.
|
|
@ -8,15 +8,23 @@ android {
|
|||
applicationId "com.tangem.wallet"
|
||||
minSdkVersion 23
|
||||
targetSdkVersion 27
|
||||
versionCode 1
|
||||
versionCode 26
|
||||
versionName "0.85.5.831.dev"
|
||||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||||
}
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
debuggable false
|
||||
minifyEnabled false
|
||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||
signingConfig signingConfigs.debug
|
||||
}
|
||||
debug {
|
||||
debuggable true
|
||||
minifyEnabled false
|
||||
// applicationIdSuffix ".debug"
|
||||
signingConfig signingConfigs.debug
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -29,7 +37,6 @@ android {
|
|||
dependencies {
|
||||
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
||||
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
||||
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
||||
implementation 'com.android.support:appcompat-v7:27.1.1'
|
||||
implementation 'com.android.support:design:27.1.1'
|
||||
implementation 'com.android.support:support-compat:27.1.1'
|
||||
|
|
@ -40,11 +47,11 @@ dependencies {
|
|||
implementation 'com.google.dagger:dagger:2.13'
|
||||
implementation 'com.madgag.spongycastle:core:1.56.0.0'
|
||||
implementation 'com.madgag.spongycastle:prov:1.56.0.0'
|
||||
implementation 'com.scottyab:rootbeer-lib:0.0.6'
|
||||
implementation 'com.skyfishjy.ripplebackground:library:1.0.1'
|
||||
implementation 'org.bitcoinj:bitcoinj-parent:0.14.4'
|
||||
implementation 'org.bitcoinj:bitcoinj-core:0.14.4'
|
||||
implementation 'me.dm7.barcodescanner:zxing:1.9.8'
|
||||
implementation 'com.scottyab:rootbeer-lib:0.0.6'
|
||||
implementation 'com.skyfishjy.ripplebackground:library:1.0.1'
|
||||
implementation 'info.hoang8f:android-segmented:1.0.6'
|
||||
testImplementation 'junit:junit:4.12'
|
||||
androidTestImplementation 'com.android.support.test:runner:1.0.2'
|
||||
|
|
|
|||
6
app/src/debug/res/values/strings.xml
Normal file
6
app/src/debug/res/values/strings.xml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
|
||||
<string name="app_name">Tangem Access DEV</string>
|
||||
|
||||
</resources>
|
||||
|
|
@ -20,7 +20,7 @@ public class LogFileProvider extends ContentProvider {
|
|||
private static final String CLASS_NAME = "LogFileProvider";
|
||||
|
||||
// The authority is the symbolic name for the provider class
|
||||
public static final String AUTHORITY = "com.tangem.wallet.LogFileProvider";
|
||||
public static final String AUTHORITY = "com.tangem.LogFileProvider";
|
||||
|
||||
// UriMatcher used to match against incoming requests
|
||||
private UriMatcher uriMatcher;
|
||||
|
|
|
|||
|
|
@ -1,12 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<android.support.design.widget.CoordinatorLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:id="@+id/main_content"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:fitsSystemWindows="true"
|
||||
tools:context="com.tangem.wallet.com.tangem.presentation.activity.CardInfoActivity">
|
||||
tools:context="com.tangem.presentation.activity.CardInfoActivity">
|
||||
|
||||
<android.support.design.widget.AppBarLayout
|
||||
android:id="@+id/appbar"
|
||||
|
|
|
|||
|
|
@ -1,10 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<android.support.constraint.ConstraintLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context="com.tangem.wallet.com.tangem.presentation.activity.ConfirmPaymentActivity">
|
||||
tools:context="com.tangem.presentation.activity.ConfirmPaymentActivity">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/textView"
|
||||
|
|
|
|||
|
|
@ -1,16 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<RelativeLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context="com.tangem.wallet.com.tangem.presentation.activity.CreateNewWalletActivity">
|
||||
tools:context="com.tangem.presentation.activity.CreateNewWalletActivity">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
android:layout_centerVertical="true"
|
||||
>
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
|
|
@ -40,6 +41,7 @@
|
|||
android:textAlignment="center"
|
||||
android:textSize="@dimen/font_normal"/>
|
||||
</LinearLayout>
|
||||
|
||||
<ProgressBar
|
||||
android:id="@+id/progressBar"
|
||||
style="@style/Widget.AppCompat.ProgressBar.Horizontal"
|
||||
|
|
@ -51,6 +53,4 @@
|
|||
android:layout_marginRight="8dp"
|
||||
app:layout_constraintBottom_toBottomOf="parent"/>
|
||||
|
||||
|
||||
|
||||
</RelativeLayout>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<android.support.constraint.ConstraintLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
|
|
@ -7,21 +8,21 @@
|
|||
android:background="@color/white"
|
||||
android:orientation="vertical"
|
||||
android:padding="0dp"
|
||||
tools:context="com.tangem.wallet.com.tangem.presentation.activity.EmptyWalletActivity">
|
||||
tools:context="com.tangem.presentation.activity.EmptyWalletActivity">
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_marginTop="20dp"
|
||||
android:layout_marginBottom="20dp">
|
||||
android:layout_marginBottom="20dp"
|
||||
android:layout_marginTop="20dp">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerInParent="true"
|
||||
android:background="@color/white"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="vertical"
|
||||
android:layout_centerInParent="true"
|
||||
android:padding="8dp">
|
||||
|
||||
<TextView
|
||||
|
|
@ -31,8 +32,8 @@
|
|||
android:fontFamily="@font/raleway_r"
|
||||
android:gravity="center_vertical"
|
||||
android:text="Wallet hasn’t been yet created"
|
||||
android:textSize="@dimen/empty_wallet_font_normal"
|
||||
android:textAlignment="center" />
|
||||
android:textAlignment="center"
|
||||
android:textSize="@dimen/empty_wallet_font_normal"/>
|
||||
|
||||
<Button
|
||||
android:id="@+id/btnNewWallet"
|
||||
|
|
@ -129,11 +130,11 @@
|
|||
<TextView
|
||||
android:layout_width="@dimen/empty_wallet_left_col_width"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/empty_wallet_left_col_margin"
|
||||
android:fontFamily="@font/raleway_r"
|
||||
android:text="Blockchain"
|
||||
android:textSize="@dimen/empty_wallet_font_normal"
|
||||
android:layout_marginLeft="@dimen/empty_wallet_left_col_margin"
|
||||
android:textColor="@color/primary_dark" />
|
||||
android:textColor="@color/primary_dark"
|
||||
android:textSize="@dimen/empty_wallet_font_normal"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tvBlockchain"
|
||||
|
|
@ -141,10 +142,11 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:fontFamily="@font/montserrat_light"
|
||||
android:text=" "
|
||||
android:textSize="@dimen/empty_wallet_font_normal"
|
||||
android:textColor="@color/primary_dark"
|
||||
android:textSize="@dimen/empty_wallet_font_normal"
|
||||
android:textStyle="normal|bold"/>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
|
|
@ -153,11 +155,11 @@
|
|||
<TextView
|
||||
android:layout_width="@dimen/empty_wallet_left_col_width"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="@dimen/empty_wallet_left_col_margin"
|
||||
android:fontFamily="@font/raleway_r"
|
||||
android:text="Issuer"
|
||||
android:layout_marginLeft="@dimen/empty_wallet_left_col_margin"
|
||||
android:textSize="@dimen/empty_wallet_font_normal"
|
||||
android:textColor="@color/primary_dark" />
|
||||
android:textColor="@color/primary_dark"
|
||||
android:textSize="@dimen/empty_wallet_font_normal"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tvIssuer"
|
||||
|
|
@ -165,8 +167,8 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:fontFamily="@font/montserrat_light"
|
||||
android:text=" "
|
||||
android:textSize="@dimen/empty_wallet_font_normal"
|
||||
android:textColor="@color/primary_dark"
|
||||
android:textSize="@dimen/empty_wallet_font_normal"
|
||||
android:textStyle="normal|bold"/>
|
||||
</LinearLayout>
|
||||
|
||||
|
|
@ -178,8 +180,8 @@
|
|||
<TextView
|
||||
android:layout_width="@dimen/empty_wallet_left_col_width"
|
||||
android:layout_height="wrap_content"
|
||||
android:fontFamily="@font/raleway_r"
|
||||
android:layout_marginLeft="@dimen/empty_wallet_left_col_margin"
|
||||
android:fontFamily="@font/raleway_r"
|
||||
android:text=""/>
|
||||
|
||||
<TextView
|
||||
|
|
@ -275,6 +277,7 @@
|
|||
android:textColor="@android:color/darker_gray"
|
||||
android:textSize="@dimen/empty_wallet_font_small"/>
|
||||
</LinearLayout>
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/imgBlockchain"
|
||||
android:layout_width="32dp"
|
||||
|
|
@ -331,5 +334,4 @@
|
|||
app:layout_constraintLeft_toLeftOf="parent"
|
||||
app:layout_constraintRight_toRightOf="parent"/>
|
||||
|
||||
|
||||
</android.support.constraint.ConstraintLayout>
|
||||
|
|
@ -1,9 +1,10 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<android.support.design.widget.CoordinatorLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context="com.tangem.wallet.com.tangem.presentation.activity.LoadedWalletActivity">
|
||||
tools:context="com.tangem.presentation.activity.LoadedWalletActivity">
|
||||
|
||||
<!--<android.support.design.widget.AppBarLayout-->
|
||||
<!--android:layout_width="match_parent"-->
|
||||
|
|
|
|||
|
|
@ -1,4 +1,5 @@
|
|||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
|
|
|
|||
|
|
@ -1,10 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<android.support.design.widget.CoordinatorLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context="com.tangem.wallet.com.tangem.presentation.activity.MainActivity">
|
||||
tools:context="com.tangem.presentation.activity.MainActivity">
|
||||
|
||||
<!--<ImageView-->
|
||||
<!--android:id="@+id/ivTap"-->
|
||||
|
|
|
|||
|
|
@ -1,10 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<android.support.constraint.ConstraintLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context="com.tangem.wallet.com.tangem.presentation.activity.PreparePaymentActivity">
|
||||
tools:context="com.tangem.presentation.activity.PreparePaymentActivity">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/textView"
|
||||
|
|
@ -57,7 +58,6 @@
|
|||
android:textColor="@color/black"
|
||||
android:textSize="@dimen/font_normal"
|
||||
android:textStyle="bold"/>
|
||||
/>
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
|
|
@ -86,7 +86,6 @@
|
|||
android:textColor="@color/black"
|
||||
android:textSize="@dimen/font_normal"
|
||||
android:textStyle="bold"/>
|
||||
/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tvBalanceEquivalent"
|
||||
|
|
@ -98,7 +97,7 @@
|
|||
android:text=" "
|
||||
android:textColor="@android:color/darker_gray"
|
||||
android:textSize="14dp"/>
|
||||
/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
|
@ -147,7 +146,6 @@
|
|||
<EditText
|
||||
android:id="@+id/etWallet"
|
||||
android:layout_width="match_parent"
|
||||
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="8dp"
|
||||
android:fontFamily="@font/montserrat_light"
|
||||
|
|
@ -244,6 +242,7 @@
|
|||
app:layout_constraintLeft_toRightOf="@+id/tvCurrency"/>
|
||||
|
||||
</android.support.constraint.ConstraintLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<Button
|
||||
|
|
@ -261,4 +260,5 @@
|
|||
app:layout_constraintBottom_toBottomOf="parent"
|
||||
app:layout_constraintLeft_toLeftOf="parent"
|
||||
app:layout_constraintRight_toRightOf="parent"/>
|
||||
|
||||
</android.support.constraint.ConstraintLayout>
|
||||
|
|
|
|||
|
|
@ -1,16 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<RelativeLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context="com.tangem.wallet.com.tangem.presentation.activity.PurgeActivity">
|
||||
tools:context="com.tangem.presentation.activity.PurgeActivity">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
android:layout_centerVertical="true"
|
||||
>
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/textView6"
|
||||
|
|
@ -54,6 +55,4 @@
|
|||
android:elevation="1dp"
|
||||
app:layout_constraintBottom_toBottomOf="parent"/>
|
||||
|
||||
|
||||
|
||||
</RelativeLayout>
|
||||
|
|
|
|||
|
|
@ -1,8 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<android.support.constraint.ConstraintLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context="com.tangem.wallet.com.tangem.presentation.activity.QRScanActivity">
|
||||
tools:context="com.tangem.presentation.activity.QRScanActivity">
|
||||
|
||||
</android.support.constraint.ConstraintLayout>
|
||||
|
|
|
|||
|
|
@ -1,10 +1,11 @@
|
|||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical"
|
||||
tools:context="com.tangem.wallet.com.tangem.presentation.activity.RequestPINActivity">
|
||||
tools:context="com.tangem.presentation.activity.RequestPINActivity">
|
||||
<!--android:paddingBottom="@dimen/activity_vertical_margin"-->
|
||||
<!--android:paddingLeft="@dimen/activity_horizontal_margin"-->
|
||||
<!--android:paddingRight="@dimen/activity_horizontal_margin"-->
|
||||
|
|
@ -46,9 +47,9 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:ems="10"
|
||||
android:inputType="numberPassword"
|
||||
android:paddingBottom="16dp"
|
||||
android:singleLine="false"
|
||||
android:textAlignment="center"
|
||||
android:paddingBottom="16dp"
|
||||
android:textSize="36sp"/>
|
||||
|
||||
<LinearLayout
|
||||
|
|
@ -60,18 +61,19 @@
|
|||
android:id="@+id/imgFingerprint"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@mipmap/ic_fp"
|
||||
android:layout_marginEnd="16dp"
|
||||
android:background="@mipmap/ic_fp"
|
||||
/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/pin_prompt"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:ems="10"
|
||||
android:fontFamily="@font/raleway_el"
|
||||
android:text="@string/prompt_pin"
|
||||
android:textAlignment="center"
|
||||
android:layout_gravity="center"
|
||||
android:textSize="18dp"/>
|
||||
</LinearLayout>
|
||||
|
||||
|
|
@ -81,12 +83,12 @@
|
|||
android:layout_height="match_parent">
|
||||
|
||||
<GridLayout
|
||||
android:id="@+id/gridLayout"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:columnCount="3"
|
||||
android:rowCount="4"
|
||||
android:id="@+id/gridLayout">
|
||||
android:rowCount="4">
|
||||
|
||||
<Button
|
||||
android:id="@+id/btn1"
|
||||
|
|
|
|||
|
|
@ -1,10 +1,11 @@
|
|||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:gravity="center_horizontal"
|
||||
android:orientation="vertical"
|
||||
tools:context="com.tangem.wallet.com.tangem.presentation.activity.SavePINActivity">
|
||||
tools:context="com.tangem.presentation.activity.SavePINActivity">
|
||||
<!--android:paddingBottom="@dimen/activity_vertical_margin"-->
|
||||
<!--android:paddingLeft="@dimen/activity_horizontal_margin"-->
|
||||
<!--android:paddingRight="@dimen/activity_horizontal_margin"-->
|
||||
|
|
@ -229,10 +230,11 @@
|
|||
android:textSize="18dp"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
</LinearLayout>
|
||||
|
|
@ -1,8 +1,12 @@
|
|||
<LinearLayout android:layout_height="match_parent" android:layout_width="match_parent"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android" >
|
||||
<android.support.v7.widget.RecyclerView
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:id="@+id/rvBlockchain">
|
||||
android:layout_height="match_parent">
|
||||
|
||||
<android.support.v7.widget.RecyclerView
|
||||
android:id="@+id/rvBlockchain"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent">
|
||||
</android.support.v7.widget.RecyclerView>
|
||||
|
||||
</LinearLayout>
|
||||
|
|
@ -1,10 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<android.support.constraint.ConstraintLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context="com.tangem.wallet.com.tangem.presentation.activity.SendTransactionActivity">
|
||||
tools:context="com.tangem.presentation.activity.SendTransactionActivity">
|
||||
|
||||
<ProgressBar
|
||||
android:id="@+id/progressBar"
|
||||
|
|
|
|||
|
|
@ -1,16 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<RelativeLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context="com.tangem.wallet.com.tangem.presentation.activity.SignPaymentActivity">
|
||||
tools:context="com.tangem.presentation.activity.SignPaymentActivity">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
android:layout_centerVertical="true"
|
||||
>
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/textView6"
|
||||
|
|
@ -54,6 +55,4 @@
|
|||
android:elevation="1dp"
|
||||
app:layout_constraintBottom_toBottomOf="parent"/>
|
||||
|
||||
|
||||
|
||||
</RelativeLayout>
|
||||
|
|
@ -1,16 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<RelativeLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context="com.tangem.wallet.com.tangem.presentation.activity.PurgeActivity">
|
||||
tools:context="com.tangem.presentation.activity.PurgeActivity">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
android:layout_centerVertical="true"
|
||||
>
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/textView6"
|
||||
|
|
@ -53,6 +54,4 @@
|
|||
android:elevation="1dp"
|
||||
app:layout_constraintBottom_toBottomOf="parent"/>
|
||||
|
||||
|
||||
|
||||
</RelativeLayout>
|
||||
|
|
@ -1,15 +1,14 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<android.support.design.widget.CoordinatorLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context="com.tangem.wallet.com.tangem.presentation.activity.VerifyCardActivity">
|
||||
|
||||
tools:context="com.tangem.presentation.activity.VerifyCardActivity">
|
||||
|
||||
<include
|
||||
layout="@layout/content_verify_card"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_width="match_parent" />
|
||||
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"/>
|
||||
|
||||
</android.support.design.widget.CoordinatorLayout>
|
||||
|
|
|
|||
|
|
@ -1,11 +1,5 @@
|
|||
<resources>
|
||||
<string name="app_name">Tangem Access</string>
|
||||
|
||||
<string name="in_msg_prefix"><-- </string>
|
||||
<string name="out_msg_prefix">--> </string>
|
||||
<string name="okay_msg_prefix">** </string>
|
||||
<string name="err_msg_prefix">!! </string>
|
||||
<string name="action_msg_prefix">-- </string>
|
||||
<string name="wrong_tag_err">Not ISO tag!</string>
|
||||
<string name="msgCardMustBeLoaded">Card must be loaded first!</string>
|
||||
<string name="tag_lost_err">Tag lost!</string>
|
||||
|
|
@ -19,7 +13,6 @@
|
|||
<string name="action_settings">Settings</string>
|
||||
<string name="title_activity_card_info">CardInfoActivity</string>
|
||||
<string name="section_format">Hello World from section: %1$d</string>
|
||||
|
||||
<string name="fingerprint_authenticate_success">Successfully authenticated!</string>
|
||||
<string name="pin_save_success">Successfully saved!</string>
|
||||
<string name="prompt_pin">Enter PIN or use fingerprint scanner</string>
|
||||
|
|
@ -35,5 +28,5 @@
|
|||
<item>@string/bcEtherium</item>
|
||||
</array>
|
||||
<string name="title_activity_loaded_wallet">LoadedWalletActivity</string>
|
||||
<string name="NoDataString">-- -- --</string>
|
||||
|
||||
</resources>
|
||||
|
|
|
|||
10
app/src/main/res/values/strings_untranslatable.xml
Normal file
10
app/src/main/res/values/strings_untranslatable.xml
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<resources>
|
||||
|
||||
<string name="in_msg_prefix"><-- </string>
|
||||
<string name="out_msg_prefix">--> </string>
|
||||
<string name="okay_msg_prefix">** </string>
|
||||
<string name="err_msg_prefix">!! </string>
|
||||
<string name="action_msg_prefix">-- </string>
|
||||
<string name="NoDataString">-- -- --</string>
|
||||
|
||||
</resources>
|
||||
6
app/src/release/res/values/strings.xml
Normal file
6
app/src/release/res/values/strings.xml
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
|
||||
<string name="app_name">Tangem Access</string>
|
||||
|
||||
</resources>
|
||||
Loading…
Add table
Add a link
Reference in a new issue