Skip to content

Commit

Permalink
Merge pull request #67 from tianma8023/dev
Browse files Browse the repository at this point in the history
[2.5.1][Version] Bump a new version 2.5.1(52)
  • Loading branch information
tianma8023 authored Jan 5, 2024
2 parents c79b034 + 9fba2c3 commit 708c83b
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 11 deletions.
3 changes: 3 additions & 0 deletions LOG-CN.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# 更新日志
- 24.01.05 v2.5.1 需要重启
1. 修复: 修复在 Android 14 上,不显示验证码通知的问题 @klxiaoniu
2. 修复:修复查看源码失败的问题
- 23.11.06 v2.5.0 需要重启
1. 变化: 适配 Android 14
- 22.09.15 v2.4.0 需要重启
Expand Down
3 changes: 3 additions & 0 deletions LOG-EN.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Update Logs
- 24.01.05 v2.5.1 Reboot required
1. Fix: the issue of cannot show sms notification on Android 14 @klxiaoniu
2. Fix: the issue of cannot open the webpage for viewing the source code
- 23.11.06 v2.5.0 Reboot required
1. Change: Adapt to Android 14.
- 22.09.15 v2.4.0 Reboot required
Expand Down
8 changes: 4 additions & 4 deletions README-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@

识别短信验证码的Xposed模块,并将验证码拷贝到剪切板,亦可以自动输入验证码。

[English README](/README-EN.md)
[English README](./README-EN.md)

# 应用截图
<img src="/art/cn/01.png" width="180"/><img src="/art/cn/02.png" width="180"/><img src="/art/cn/03.png" width="180"/>
<img src="./art/cn/01.png" width="180"/><img src="./art/cn/02.png" width="180"/><img src="./art/cn/03.png" width="180"/>

# 下载
下载地址:
- [酷安](https://www.coolapk.com/apk/com.github.tianma8023.xposed.smscode)
- [GitHub Releases](https://github.com/tianma8023/XposedSmsCode/releases)
- [LSPosed仓库](https://github.com/Xposed-Modules-Repo/com.github.tianma8023.xposed.smscode/releases/)
- [Xposed仓库](http://repo.xposed.info/module/com.github.tianma8023.xposed.smscode)
- ~~[酷安](https://www.coolapk.com/apk/com.github.tianma8023.xposed.smscode)~~
- ~~[Xposed仓库](http://repo.xposed.info/module/com.github.tianma8023.xposed.smscode)~~

# 使用
1. Root你的设备,安装Xposed框架;
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@

An Xposed module which can recognize, parse SMS code and copy it to clipboard when a new message arrives. It can also input SMS code automatically.

[中文版说明](/README-CN.md)
[中文版说明](./README-CN.md)

# Screenshots
<img src="/art/en/01.png" width="180"/><img src="/art/en/02.png" width="180"/><img src="/art/en/03.png" width="180"/>
<img src="./art/en/01.png" width="180"/><img src="./art/en/02.png" width="180"/><img src="./art/en/03.png" width="180"/>

# Download
- [GitHub Releases](https://github.com/tianma8023/XposedSmsCode/releases)
- [LSPosed Repository](https://github.com/Xposed-Modules-Repo/com.github.tianma8023.xposed.smscode/releases/)
- [Coolapk](https://www.coolapk.com/apk/com.github.tianma8023.xposed.smscode)
- [Xposed Repository](http://repo.xposed.info/module/com.github.tianma8023.xposed.smscode)
- ~~[Coolapk](https://www.coolapk.com/apk/com.github.tianma8023.xposed.smscode)~~
- ~~[Xposed Repository](http://repo.xposed.info/module/com.github.tianma8023.xposed.smscode)~~

# Usage
1. Root your device and install Xposed Framework.
Expand Down
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ def static releaseTime() {
return new Date().format("yyMMdd", TimeZone.default)
}

def VERSION_NAME = "2.5.0"
def VERSION_CODE = 51
def VERSION_NAME = "2.5.1"
def VERSION_CODE = 52

android {
namespace 'com.github.tianma8023.xposed.smscode'
Expand Down Expand Up @@ -149,7 +149,7 @@ dependencies {
implementation "androidx.appcompat:appcompat:1.6.1"
implementation "com.google.android.material:material:1.10.0" // material design support
implementation "androidx.recyclerview:recyclerview:1.3.2" // recycler view
implementation "androidx.browser:browser:1.6.0" // custom tabs
implementation "androidx.browser:browser:1.7.0" // custom tabs
implementation "androidx.preference:preference:1.2.1" // preference support
implementation "androidx.constraintlayout:constraintlayout:2.1.4" // constraint layout
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0" // swipe refresh layout
Expand Down
2 changes: 2 additions & 0 deletions app/src/main/java/com/tianma/xsmscode/common/utils/Utils.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.tianma.xsmscode.common.utils;

import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.widget.Toast;

Expand All @@ -21,6 +22,7 @@ private Utils() {
public static void showWebPage(Context context, String url) {
try {
CustomTabsIntent cti = new CustomTabsIntent.Builder().build();
cti.intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
cti.launchUrl(context, Uri.parse(url));
} catch (Exception e) {
Toast.makeText(context, R.string.browser_install_or_enable_prompt, Toast.LENGTH_SHORT).show();
Expand Down

0 comments on commit 708c83b

Please sign in to comment.