Skip to content

Commit

Permalink
更新依赖版本,默认启用持久化资源支持。
Browse files Browse the repository at this point in the history
  • Loading branch information
xausky committed Feb 2, 2019
1 parent 93729d7 commit 5eed079
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ android {
applicationId "io.github.xausky.unitymodmanager"
minSdkVersion 21
targetSdkVersion 23
versionCode 282
versionName "2.8.2"
versionCode 290
versionName "2.9.0"
ndk{
abiFilters "armeabi-v7a","x86"
}
Expand Down Expand Up @@ -66,10 +66,10 @@ dependencies {
}

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

implementation 'com.crashlytics.sdk.android:answers:1.4.5'
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.7'
implementation 'com.crashlytics.sdk.android:answers:1.4.6'
implementation 'com.crashlytics.sdk.android:crashlytics:2.9.8'
}
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public BaseFragment setBase(Context base) {
settings = base.getSharedPreferences(SettingFragment.SETTINGS_PREFERENCE_NAME, Context.MODE_PRIVATE);
packageName = settings.getString(PACKAGE_PREFERENCE_KEY, null);
apkModifyModel = Integer.valueOf(settings.getString("apk_modify_model", "1"));
persistentSupport = settings.getBoolean("persistent_support", false);
persistentSupport = settings.getBoolean("persistent_support", true);
obbSupport = settings.getBoolean("obb_support", false);
return super.setBase(base);
}
Expand All @@ -123,7 +123,7 @@ public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container,
context = inflater.getContext();
settings = context.getSharedPreferences(SettingFragment.SETTINGS_PREFERENCE_NAME, Context.MODE_PRIVATE);
apkModifyModel = Integer.valueOf(settings.getString("apk_modify_model", "1"));
persistentSupport = settings.getBoolean("persistent_support", false);
persistentSupport = settings.getBoolean("persistent_support", true);
obbSupport = settings.getBoolean("obb_support", false);
dialog = new ApplicationChooseDialog(context, this, ALL_APPLICATION_PACKAGE_REGEX, apkModifyModel == APK_MODIFY_MODEL_VIRTUAL, true);
dialog.setListener(this);
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/xml/preferences.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
android:entryValues="@array/apk_modify_model_values"/>
<SwitchPreference
android:key="persistent_support"
android:defaultValue="false"
android:defaultValue="true"
android:title="@string/persistent_support_title"
android:summary="@string/persistent_support_summary" />
<SwitchPreference
Expand Down

0 comments on commit 5eed079

Please sign in to comment.