mirror of
https://github.com/SimpleMobileTools/Simple-Notes.git
synced 2025-03-24 20:40:09 +01:00
updating commons, increasing min SDK to 23
This commit is contained in:
parent
8cf0c2b7b8
commit
7b76b7290c
@ -14,7 +14,7 @@ android {
|
|||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "com.simplemobiletools.notes.pro"
|
applicationId "com.simplemobiletools.notes.pro"
|
||||||
minSdkVersion 21
|
minSdkVersion 23
|
||||||
targetSdkVersion 33
|
targetSdkVersion 33
|
||||||
versionCode 99
|
versionCode 99
|
||||||
versionName "6.14.1"
|
versionName "6.14.1"
|
||||||
@ -63,7 +63,7 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'com.github.SimpleMobileTools:Simple-Commons:a1ecb048c0'
|
implementation 'com.github.SimpleMobileTools:Simple-Commons:6323be1fd7'
|
||||||
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
||||||
implementation 'androidx.documentfile:documentfile:1.0.1'
|
implementation 'androidx.documentfile:documentfile:1.0.1'
|
||||||
|
|
||||||
|
@ -29,6 +29,7 @@
|
|||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".activities.MainActivity"
|
android:name=".activities.MainActivity"
|
||||||
|
android:configChanges="orientation"
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
android:launchMode="singleTask">
|
android:launchMode="singleTask">
|
||||||
|
|
||||||
@ -57,30 +58,21 @@
|
|||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name="com.simplemobiletools.commons.activities.AboutActivity"
|
android:name="com.simplemobiletools.commons.activities.AboutActivity"
|
||||||
|
android:configChanges="orientation"
|
||||||
android:exported="false"
|
android:exported="false"
|
||||||
android:label="@string/about"
|
android:label="@string/about"
|
||||||
android:parentActivityName=".activities.MainActivity" />
|
android:parentActivityName=".activities.MainActivity" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name="com.simplemobiletools.commons.activities.CustomizationActivity"
|
android:name="com.simplemobiletools.commons.activities.CustomizationActivity"
|
||||||
|
android:configChanges="orientation"
|
||||||
android:exported="false"
|
android:exported="false"
|
||||||
android:label="@string/customize_colors"
|
android:label="@string/customize_colors"
|
||||||
android:parentActivityName=".activities.SettingsActivity" />
|
android:parentActivityName=".activities.SettingsActivity" />
|
||||||
|
|
||||||
<activity
|
|
||||||
android:name="com.simplemobiletools.commons.activities.LicenseActivity"
|
|
||||||
android:exported="false"
|
|
||||||
android:label="@string/third_party_licences"
|
|
||||||
android:parentActivityName="com.simplemobiletools.commons.activities.AboutActivity" />
|
|
||||||
|
|
||||||
<activity
|
|
||||||
android:name="com.simplemobiletools.commons.activities.FAQActivity"
|
|
||||||
android:exported="false"
|
|
||||||
android:label="@string/frequently_asked_questions"
|
|
||||||
android:parentActivityName="com.simplemobiletools.commons.activities.AboutActivity" />
|
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".activities.SettingsActivity"
|
android:name=".activities.SettingsActivity"
|
||||||
|
android:configChanges="orientation"
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
android:label="@string/settings"
|
android:label="@string/settings"
|
||||||
android:parentActivityName=".activities.MainActivity">
|
android:parentActivityName=".activities.MainActivity">
|
||||||
|
@ -28,7 +28,7 @@ abstract class NotesDatabase : RoomDatabase() {
|
|||||||
private var defaultWidgetBgColor = 0
|
private var defaultWidgetBgColor = 0
|
||||||
|
|
||||||
fun getInstance(context: Context): NotesDatabase {
|
fun getInstance(context: Context): NotesDatabase {
|
||||||
defaultWidgetBgColor = context.resources.getInteger(R.integer.default_widget_bg_color)
|
defaultWidgetBgColor = context.resources.getColor(R.color.default_widget_bg_color)
|
||||||
if (db == null) {
|
if (db == null) {
|
||||||
synchronized(NotesDatabase::class) {
|
synchronized(NotesDatabase::class) {
|
||||||
if (db == null) {
|
if (db == null) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user