Skip to content

Commit 5eed079

Browse files
author
xausky
committed
更新依赖版本,默认启用持久化资源支持。
1 parent 93729d7 commit 5eed079

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ android {
2020
applicationId "io.github.xausky.unitymodmanager"
2121
minSdkVersion 21
2222
targetSdkVersion 23
23-
versionCode 282
24-
versionName "2.8.2"
23+
versionCode 290
24+
versionName "2.9.0"
2525
ndk{
2626
abiFilters "armeabi-v7a","x86"
2727
}
@@ -66,10 +66,10 @@ dependencies {
6666
}
6767

6868
implementation 'com.github.medyo:android-about-page:1.2.4' //https://github.com/medyo/android-about-page
69-
implementation 'com.github.xausky:VirtualXposed:8c04e459bc' //https://github.com/xausky/VirtualXposed
69+
implementation 'com.github.xausky:VirtualXposed:8d2abfc77a' //https://github.com/xausky/VirtualXposed
7070
implementation 'com.github.bartwell:ExFilePicker:0c5a7c83ae' //https://github.com/bartwell/ExFilePicker
7171
implementation 'com.github.xausky:CheckVersionLib:ac25f0874e' //https://github.com/xausky/CheckVersionLib
7272

73-
implementation 'com.crashlytics.sdk.android:answers:1.4.5'
74-
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.7'
73+
implementation 'com.crashlytics.sdk.android:answers:1.4.6'
74+
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.8'
7575
}

app/src/main/java/io/github/xausky/unitymodmanager/fragment/HomeFragment.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ public BaseFragment setBase(Context base) {
112112
settings = base.getSharedPreferences(SettingFragment.SETTINGS_PREFERENCE_NAME, Context.MODE_PRIVATE);
113113
packageName = settings.getString(PACKAGE_PREFERENCE_KEY, null);
114114
apkModifyModel = Integer.valueOf(settings.getString("apk_modify_model", "1"));
115-
persistentSupport = settings.getBoolean("persistent_support", false);
115+
persistentSupport = settings.getBoolean("persistent_support", true);
116116
obbSupport = settings.getBoolean("obb_support", false);
117117
return super.setBase(base);
118118
}
@@ -123,7 +123,7 @@ public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container,
123123
context = inflater.getContext();
124124
settings = context.getSharedPreferences(SettingFragment.SETTINGS_PREFERENCE_NAME, Context.MODE_PRIVATE);
125125
apkModifyModel = Integer.valueOf(settings.getString("apk_modify_model", "1"));
126-
persistentSupport = settings.getBoolean("persistent_support", false);
126+
persistentSupport = settings.getBoolean("persistent_support", true);
127127
obbSupport = settings.getBoolean("obb_support", false);
128128
dialog = new ApplicationChooseDialog(context, this, ALL_APPLICATION_PACKAGE_REGEX, apkModifyModel == APK_MODIFY_MODEL_VIRTUAL, true);
129129
dialog.setListener(this);

app/src/main/res/xml/preferences.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
android:entryValues="@array/apk_modify_model_values"/>
1010
<SwitchPreference
1111
android:key="persistent_support"
12-
android:defaultValue="false"
12+
android:defaultValue="true"
1313
android:title="@string/persistent_support_title"
1414
android:summary="@string/persistent_support_summary" />
1515
<SwitchPreference

0 commit comments

Comments
 (0)