Skip to content

Commit

Permalink
Build 2117
Browse files Browse the repository at this point in the history
  • Loading branch information
MrStahlfelge committed Dec 2, 2021
1 parent e1b0250 commit 2e7a9c4
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ android {
applicationId "org.ergoplatform.android"
minSdkVersion 24
targetSdkVersion 30
versionCode 2116
versionName "1.4.2116"
versionCode 2117
versionName "1.4.2117"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
4 changes: 2 additions & 2 deletions ios/robovm.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
app.version=0.3.2116
app.version=0.6.2117
app.id=org.ergoplatform.ios
app.mainclass=org.ergoplatform.ios.Main
app.executable=ErgoWallet
app.build=2116
app.build=2117
app.name=Ergo Wallet
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ import org.ergoplatform.uilogic.transactions.SendFundsUiLogic
import org.robovm.apple.coregraphics.CGRect
import org.robovm.apple.uikit.*

/**
* View template for sending token entry on send funds screen
*/
class SendTokenEntryView(val uiLogic: SendFundsUiLogic, private val amountErrorField: UIView) :
UIStackView(CGRect.Zero()) {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ import org.robovm.apple.coregraphics.CGRect
import org.robovm.apple.uikit.UILayoutConstraintAxis
import org.robovm.apple.uikit.UIStackView

/**
* View template for displaying token information on wallet overview and wallet details screen
*/
class TokenEntryView : UIStackView(CGRect.Zero()) {

private val labelTokenVal = Body1BoldLabel()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ import org.robovm.apple.uikit.*

const val TOKEN_CELL = "TOKEN_CELL"

/**
* Let the user choose one or more token(s) from a list of tokens
*/
class ChooseTokenListViewController(
val tokensToChooseFrom: List<WalletToken>,
val onChoose: (String) -> Unit
Expand Down

0 comments on commit 2e7a9c4

Please sign in to comment.