Browse Source

Keypad gradle fixes

master
preyearegmi 6 years ago
parent
commit
9a26730014
  1. BIN
      .idea/caches/build_file_checksums.ser
  2. 9
      app/build.gradle
  3. 2
      app/src/main/res/drawable/ic_rounded_password_prompt.xml
  4. 38
      app/src/main/res/layout/activity_transaction_password_prompt.xml

BIN
.idea/caches/build_file_checksums.ser

9
app/build.gradle

@ -30,6 +30,15 @@ android {
setProperty("archivesBaseName", "GME_" + dateTime + "_v" + versionCode + "(" + versionName + ")") setProperty("archivesBaseName", "GME_" + dateTime + "_v" + versionCode + "(" + versionName + ")")
} }
splits {
abi {
enable true
reset()
include 'x86', 'armeabi-v7a', 'x86_64'
universalApk true
}
}
signingConfigs { signingConfigs {
release { release {
keyAlias 'GmeRemitKey' keyAlias 'GmeRemitKey'

2
app/src/main/res/drawable/ic_rounded_password_prompt.xml

@ -2,6 +2,6 @@
<inset <inset
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:android="http://schemas.android.com/apk/res/android"
android:drawable="@drawable/ic_rounded_password_prompt_bg" android:drawable="@drawable/ic_rounded_password_prompt_bg"
android:insetTop="132dp"
android:insetTop="56dp"
> >
</inset> </inset>

38
app/src/main/res/layout/activity_transaction_password_prompt.xml

@ -26,7 +26,7 @@
android:textColor="@color/black" android:textColor="@color/black"
android:textSize="20sp" /> android:textSize="20sp" />
<com.gmeremit.online.gmeremittance_native.utils.security.securitykeypad.SecurityKeyboardView <com.gmeremit.online.gmeremittance_native.utils.security.securitykeypad.SecurityKeyboardView
android:layout_marginTop="15dp"
android:layout_marginTop="10dp"
android:layout_marginStart="10dp" android:layout_marginStart="10dp"
android:layout_marginEnd="10dp" android:layout_marginEnd="10dp"
android:id="@+id/securityKeyboard" android:id="@+id/securityKeyboard"
@ -36,27 +36,33 @@
<com.gmeremit.online.gmeremittance_native.customwidgets.GmeErrorTextView <com.gmeremit.online.gmeremittance_native.customwidgets.GmeErrorTextView
android:id="@+id/passwordErrorTxt" android:id="@+id/passwordErrorTxt"
android:paddingTop="2dp" android:paddingTop="2dp"
android:paddingBottom="5dp"
android:paddingBottom="2dp"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_marginLeft="13dp" android:layout_marginLeft="13dp"
android:layout_marginRight="13dp" android:layout_marginRight="13dp"
/> />
<View
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
<FrameLayout
android:layout_gravity="bottom"
android:id="@+id/keypadContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
</FrameLayout>
<RelativeLayout <RelativeLayout
android:id="@+id/keypadBallon"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
android:layout_height="0dp"
android:layout_weight="1">
<FrameLayout
android:layout_alignParentBottom="true"
android:layout_gravity="bottom"
android:id="@+id/keypadContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
>
</FrameLayout>
<RelativeLayout
android:layout_alignParentBottom="true"
android:id="@+id/keypadBallon"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
</RelativeLayout>
</LinearLayout> </LinearLayout>
Loading…
Cancel
Save