This repository has been archived by the owner on Mar 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
241a2d9
commit b9a7a24
Showing
4 changed files
with
91 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,32 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="moe.reimu.weiboxposed" > | ||
<manifest package="moe.reimu.weiboxposed" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
|
||
<application | ||
android:allowBackup="true" | ||
android:icon="@mipmap/ic_launcher" | ||
android:label="@string/app_name" > | ||
android:label="@string/app_name" | ||
android:theme="@android:style/Theme.Material.Light"> | ||
<meta-data | ||
android:name="xposedmodule" | ||
android:value="true" /> | ||
android:value="true"/> | ||
<meta-data | ||
android:name="xposeddescription" | ||
android:value="@string/module_desc" /> | ||
android:value="@string/module_desc"/> | ||
<meta-data | ||
android:name="xposedminversion" | ||
android:value="30" /> | ||
android:value="30"/> | ||
|
||
<activity | ||
android:name=".SettingsActivity" | ||
android:label="@string/title_activity_settings" | ||
android:exported="true"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
|
||
<category android:name="de.robv.android.xposed.category.MODULE_SETTINGS" /> | ||
</intent-filter> | ||
</activity> | ||
</application> | ||
|
||
</manifest> | ||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,14 @@ | ||
<resources> | ||
<string name="app_name">WeiboXposed</string> | ||
<string name="module_desc">微博修改 by 加大号的猫</string> | ||
<string name="title_activity_settings">设置</string> | ||
|
||
<!-- Strings related to Settings --> | ||
|
||
<string name="pref_title_switch_remove_mode">使用实验性移除方式</string> | ||
<string name="pref_description_switch_remove_mode_on">将采用新的微博移除方式,会留下较为明显的空白。如果您不需要查看分组微博,可禁用此功能 | ||
</string> | ||
<string name="pref_description_switch_remove_mode_off">将采用基于数据的移除方式,可能影响分组微博,导致无法正常刷新。 | ||
</string> | ||
<string name="restart_weibo">配置已保存,强行停止微博或重启设备后生效</string> | ||
</resources> |