Fixed orientation of QR scanner activity, plus style corrections
This commit is contained in:
parent
9357b35cf9
commit
7049e491b7
3 changed files with 15 additions and 10 deletions
|
@ -122,6 +122,9 @@ dependencies {
|
||||||
implementation 'org.bitcoinj:bitcoinj-tools:0.14.7'
|
implementation 'org.bitcoinj:bitcoinj-tools:0.14.7'
|
||||||
implementation 'org.java-websocket:Java-WebSocket:1.5.1'
|
implementation 'org.java-websocket:Java-WebSocket:1.5.1'
|
||||||
|
|
||||||
|
implementation ('com.journeyapps:zxing-android-embedded:4.1.0') { transitive = false }
|
||||||
|
implementation 'com.google.zxing:core:3.3.0'
|
||||||
|
|
||||||
compileOnly 'org.projectlombok:lombok:1.18.10'
|
compileOnly 'org.projectlombok:lombok:1.18.10'
|
||||||
annotationProcessor 'org.projectlombok:lombok:1.18.10'
|
annotationProcessor 'org.projectlombok:lombok:1.18.10'
|
||||||
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
|
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
|
||||||
|
@ -134,9 +137,6 @@ dependencies {
|
||||||
|
|
||||||
__32bitImplementation 'io.lbry:lbrysdk32:0.94.1'
|
__32bitImplementation 'io.lbry:lbrysdk32:0.94.1'
|
||||||
__64bitImplementation 'io.lbry:lbrysdk64:0.94.1'
|
__64bitImplementation 'io.lbry:lbrysdk64:0.94.1'
|
||||||
|
|
||||||
implementation ('com.journeyapps:zxing-android-embedded:4.1.0') { transitive = false }
|
|
||||||
implementation 'com.google.zxing:core:3.3.0'
|
|
||||||
}
|
}
|
||||||
|
|
||||||
apply plugin: 'com.google.gms.google-services'
|
apply plugin: 'com.google.gms.google-services'
|
||||||
|
|
|
@ -101,6 +101,11 @@
|
||||||
android:theme="@style/AppTheme.NoActionBarTranslucent"
|
android:theme="@style/AppTheme.NoActionBarTranslucent"
|
||||||
android:windowSoftInputMode="adjustResize" />
|
android:windowSoftInputMode="adjustResize" />
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name="com.journeyapps.barcodescanner.CaptureActivity"
|
||||||
|
android:screenOrientation="fullSensor"
|
||||||
|
tools:replace="screenOrientation" />
|
||||||
|
|
||||||
<service
|
<service
|
||||||
android:name="io.lbry.browser.LbrynetMessagingService"
|
android:name="io.lbry.browser.LbrynetMessagingService"
|
||||||
android:exported="false">
|
android:exported="false">
|
||||||
|
|
|
@ -377,7 +377,8 @@ public class WalletFragment extends BaseFragment implements SdkStatusListener, W
|
||||||
buttonQRScanAddress.setOnClickListener(new View.OnClickListener() {
|
buttonQRScanAddress.setOnClickListener(new View.OnClickListener() {
|
||||||
@Override
|
@Override
|
||||||
public void onClick(View view) {
|
public void onClick(View view) {
|
||||||
IntentIntegrator.forSupportFragment(WalletFragment.this).initiateScan();
|
IntentIntegrator intentIntegrator = IntentIntegrator.forSupportFragment(WalletFragment.this);
|
||||||
|
intentIntegrator.setOrientationLocked(false).initiateScan();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
buttonSend.setOnClickListener(new View.OnClickListener() {
|
buttonSend.setOnClickListener(new View.OnClickListener() {
|
||||||
|
@ -820,5 +821,4 @@ public class WalletFragment extends BaseFragment implements SdkStatusListener, W
|
||||||
inputSendAddress.setText(code);
|
inputSendAddress.setText(code);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in a new issue