Skip to content

Commit

Permalink
release: v1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
leavesCZY committed May 1, 2024
1 parent 50eeca0 commit ebb9cd7
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 12 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# KVHolder

一个基于 Kotlin 语法对 MMKV 进行封装的 key-value 存储库,简化了 MMKV 的使用步骤
一个基于 Kotlin MMKV 进行封装的 key-value 存储库,简化了 MMKV 的使用步骤

接入指南:[wiki](https://github.com/leavesCZY/KVHolder/wiki)
接入指南:[Wiki](https://github.com/leavesCZY/KVHolder/wiki)
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ dependencies {
androidTestImplementation(libs.androidx.espresso)
implementation(libs.androidx.appcompat)
implementation(libs.google.material)
// implementation(libs.kvholder)
implementation(project(":kvholder"))
implementation(libs.kvholder)
// implementation(project(":kvholder"))
}
8 changes: 6 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">

<application
android:name=".MainApplication"
Expand All @@ -11,7 +12,10 @@
android:theme="@style/Theme.kvHolder">
<activity
android:name=".MainActivity"
android:exported="true">
android:configChanges="keyboard|keyboardHidden|screenLayout|screenSize|orientation|locale|layoutDirection"
android:exported="true"
android:screenOrientation="portrait"
tools:ignore="DiscouragedApi,LockedOrientationActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down
5 changes: 1 addition & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,8 @@ org.gradle.jvmargs=-Xmx1536m
# AndroidX package structure to make it clearer which packages are bundled with the
# Android operating system, and which are packaged with your app's APK
# https://developer.android.com/topic/libraries/support-library/androidx-rn
android.useAndroidX=true
# Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true
# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official
android.useAndroidX=true
android.nonTransitiveRClass=true
android.nonFinalResIds=false
android.enableR8.fullMode=true
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ google-gson = "2.10.1"

tencent-mmkv = "1.3.5"

kvholder-remote = "1.0.6"
kvholder-publishing = "1.0.6"
kvholder-remote = "1.0.7"
kvholder-publishing = "1.0.7"

[plugins]
android-application = { id = "com.android.application", version.ref = "android-plugin" }
Expand Down

0 comments on commit ebb9cd7

Please sign in to comment.