mirror of
https://github.com/YTVanced/VancedManager
synced 2024-11-27 05:23:00 +00:00
attempt to fix build
This commit is contained in:
parent
4058b7d70a
commit
a04eb827c6
3 changed files with 8 additions and 5 deletions
|
@ -64,8 +64,7 @@
|
|||
android:layout_marginStart="@dimen/stdp"
|
||||
android:layout_marginTop="@dimen/stdp"
|
||||
android:layout_marginEnd="@dimen/stdp"
|
||||
android:visibility="@{viewModel.nonrootModeSelected ? View.GONE : View.VISIBLE}"
|
||||
bind:viewModel="@{viewModel}"/>
|
||||
android:visibility="@{viewModel.nonrootModeSelected ? View.GONE : View.VISIBLE}" />
|
||||
|
||||
<include
|
||||
layout="@layout/include_changelogs"
|
||||
|
|
|
@ -31,7 +31,7 @@
|
|||
<TextView
|
||||
style="@style/TextAppTitle"
|
||||
android:id="@+id/signature_title"
|
||||
android:text="Signature Verification"
|
||||
android:text="@string/signature_verification"
|
||||
app:layout_constraintStart_toEndOf="@id/signature_icon"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintBottom_toTopOf="@id/signature_barrier"/>
|
||||
|
@ -39,7 +39,7 @@
|
|||
<com.google.android.material.button.MaterialButton
|
||||
style="@style/ButtonStyle"
|
||||
android:id="@+id/signature_button"
|
||||
android:text="Check"
|
||||
android:text="@string/check"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
|
@ -58,7 +58,7 @@
|
|||
|
||||
<TextView
|
||||
style="@style/AppVer"
|
||||
android:text="status:" />
|
||||
android:text="@string/signature_status" />
|
||||
|
||||
<TextView
|
||||
style="@style/AppVer.Bold"
|
||||
|
@ -80,4 +80,5 @@
|
|||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
|
||||
</com.google.android.material.card.MaterialCardView>
|
||||
|
||||
</layout>
|
|
@ -14,6 +14,7 @@
|
|||
|
||||
<!-- Home Page -->
|
||||
<string name="changelogs">Changelogs</string>
|
||||
<string name="check">Check</string>
|
||||
<string name="install">Install</string>
|
||||
<string name="installation_aborted">Operation failed because user aborted installation</string>
|
||||
<string name="installation_blocked">Operation failed because user blocked installation</string>
|
||||
|
@ -34,6 +35,8 @@
|
|||
<string name="website_text">The official website of Vanced</string>
|
||||
<string name="signature_disabled">Disabled</string>
|
||||
<string name="signature_enabled">Enabled</string>
|
||||
<string name="signature_status">status:</string>
|
||||
<string name="signature_verification">Signature Verification</string>
|
||||
<string name="signature_not_checked">Signature not checked</string>
|
||||
<string name="support_us">Support us by downloading Brave</string>
|
||||
|
||||
|
|
Loading…
Reference in a new issue