Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

more clear hint when enter password for encrypted database file #1830

Merged
merged 2 commits into from
Sep 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MMEX_Icon_Font/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ android {
defaultConfig {
// minSdkVersion rootProject.ext.minSdkVersion
// targetSdkVersion rootProject.ext.targetSdkVersion
minSdkVersion 22
minSdkVersion 23
targetSdk rootProject.ext.targetSdk

consumerProguardFiles 'consumer-proguard-rules.pro'
Expand Down
3 changes: 1 addition & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,6 @@
<activity
android:name=".tutorial.TutorialActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:label="@string/application_name"
android:screenOrientation="portrait"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />
<activity
Expand Down Expand Up @@ -436,7 +435,7 @@
android:name="com.sec.android.multiwindow.MINIMUM_SIZE_H"
android:resource="@dimen/app_minimumsize_h" />

<activity android:name=".investment.PriceEditActivity"></activity>
<activity android:name=".investment.PriceEditActivity" />
</application>

</manifest>
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,7 @@
<string name="all_accounts">All Accounts</string>
<string name="records">records</string>
<!-- db password entry -->
<string name="enter_password">Enter password</string>
<string name="enter_password">Enter password (optional)\n Only required for .emb file</string>

<string name="success">Operation successful</string>
<string name="overview">Overview</string>
Expand Down
2 changes: 1 addition & 1 deletion money/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ android {
compileSdk rootProject.ext.compileSdk

defaultConfig {
minSdkVersion 22
minSdkVersion 23
targetSdk rootProject.ext.targetSdk
}
buildTypes {
Expand Down
Loading