Skip to content

Commit d36180f

Browse files
committed
2.2.0
1.Change the app name in chinese language 2.Edit the RecyclerView style, support large devices 3.add back shortcut
1 parent 6033a7f commit d36180f

File tree

7 files changed

+8
-10
lines changed

7 files changed

+8
-10
lines changed

app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ android {
1111
applicationId "com.happymax.fcmpushviewer"
1212
minSdk 26
1313
targetSdk 33
14-
versionCode 7
15-
versionName "2.1.5"
14+
versionCode 8
15+
versionName "2.2.0"
1616

1717
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1818
}

app/src/main/res/values-zh-rCN/strings.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<resources>
3-
<string name="app_name">FCM Viewer</string>
3+
<string name="app_name">FCM 查看器</string>
44
<string name="dialog_title_error">错误</string>
55
<string name="dialog_btn_ok">确认</string>
66
<string name="dialog_msg_missing_gms">请确保您的设备已安装谷歌服务</string>

app/src/main/res/values-zh-rHK/strings.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<resources>
3-
<string name="app_name">FCM Viewer</string>
3+
<string name="app_name">FCM 檢視器</string>
44
<string name="dialog_title_error">出錯</string>
55
<string name="dialog_btn_ok">確認</string>
66
<string name="dialog_msg_missing_gms">請確保您的設備已安裝谷歌服務</string>

app/src/main/res/values-zh-rMO/strings.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<resources>
3-
<string name="app_name">FCM Viewer</string>
3+
<string name="app_name">FCM 檢視器</string>
44
<string name="dialog_title_error">出錯</string>
55
<string name="dialog_btn_ok">確認</string>
66
<string name="dialog_msg_missing_gms">請確保您的設備已安裝谷歌服務</string>

app/src/main/res/values-zh-rTW/strings.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<resources>
3-
<string name="app_name">FCM Viewer</string>
3+
<string name="app_name">FCM 檢視器</string>
44
<string name="dialog_title_error">出錯</string>
55
<string name="dialog_btn_ok">確認</string>
66
<string name="dialog_msg_missing_gms">請確保您的設備已安裝谷歌服務</string>

app/src/main/res/values/strings.xml

-2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,4 @@
1616
You can click the application listed in the list to enter the system\'s application information page, click the \"Battery\" option, and make sure the status is \"Optimization\". \n
1717
When the status is \"Restricted\", FCM will not be able to pull up the application pop-up notification. This is FCM Determined by the principle, when a notification comes, FCM will broadcast and pull up the pop-up notification of the corresponding application. \n
1818
If the application is developed according to the specifications, when no message comes, the application will enter the cache in the background and will not consume a lot of power. </string>
19-
<!-- TODO: Remove or change this placeholder text -->
20-
<string name="hello_blank_fragment">Hello blank fragment</string>
2119
</resources>

app/src/main/res/xml/shortcuts.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
33
<!-- Add shortcuts that launch your app to a specific screen or task. -->
44
<!-- Learn more at https://developer.android.com/guide/topics/ui/shortcuts/creating-shortcuts -->
5-
<!--<shortcut android:shortcutId="GCM_Shortcut"
5+
<shortcut android:shortcutId="GCM_Shortcut"
66
android:enabled="true"
77
android:icon="@mipmap/fcm_shortcut"
88
android:shortcutShortLabel="@string/shortcut_shortlabel_GcmDiagnostics"
@@ -12,7 +12,7 @@
1212
android:action="android.intent.action.VIEW"
1313
android:targetClass="com.google.android.gms.gcm.GcmDiagnostics"
1414
android:targetPackage="com.google.android.gms" />
15-
</shortcut>-->
15+
</shortcut>
1616

1717
<!-- Integrate with Google Assistant App Actions for launching your app with various voice commands. -->
1818
<!-- Learn more at: https://developers.google.com/assistant/app/overview -->

0 commit comments

Comments
 (0)