Skip to content

Commit

Permalink
Release 2.0.6-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
ademcan committed Aug 30, 2019
1 parent 04393af commit c2976a6
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 130,8 @@ android {
applicationId "com.theqrl"
minSdkVersion 23
targetSdkVersion 27
versionCode 4
versionName "1.0.84"
versionCode 6
versionName "2.0"

testBuildType System.getProperty('testBuildType', 'debug') //this will later be used to control the test apk build type
missingDimensionStrategy "minReactNative", "minReactNative46" //read note
Expand Down
2 changes: 1 addition & 1 deletion android/app/release/output.json
Original file line number Diff line number Diff line change
@@ -1 1 @@
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":4,"versionName":"1.0.84","enabled":true,"outputFile":"qrlwallet-1.0.84.apk","fullName":"release","baseName":"release"},"path":"qrlwallet-1.0.84.apk","properties":{}}]
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":6,"versionName":"2.0","enabled":true,"outputFile":"qrlwallet-2.0.apk","fullName":"release","baseName":"release"},"path":"qrlwallet-2.0.apk","properties":{}}]
Binary file added android/app/release/qrlwallet-1.0.85.apk
Binary file not shown.
Binary file added android/app/release/qrlwallet-2.0.apk
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -281,8 281,10 @@ public void checkPendingTx(String walletindex, Callback errorCallback, Callback
@ReactMethod
// Method to update the wallet's balance
public void refreshWallet(String walletindex, Callback errorCallback, Callback successCallback) {
System.out.println( "refresWallet from Android" );
System.out.println( "refresWallet from Android for wallet with ID" );
System.out.println( walletindex );
String walletAddress = getEncrypted("address".concat(walletindex));
System.out.println( walletAddress );

String server = PreferenceHelper.getString("node");
int port = PreferenceHelper.getInt("port");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 80,7 @@
</AdditionalOptions>
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
buildConfiguration = "Release"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
Expand Down
4 changes: 2 additions & 2 deletions ios/theQRL/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 21,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.1</string>
<string>2.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1</string>
<string>6</string>
<key>LSRequiresIPhoneOS</key>
<true/>
<key>NSAppTransportSecurity</key>
Expand Down

0 comments on commit c2976a6

Please sign in to comment.