Skip to content

Commit

Permalink
Update version number and fix some typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhongyi Tong committed May 31, 2016
1 parent dac8d9c commit 7a62bfc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 21
compileSdkVersion 22
buildToolsVersion "21.1.2"

defaultConfig {
applicationId "xyz.monkeytong.hongbao"
minSdkVersion 16
targetSdkVersion 22
versionCode 3
versionName "v2.3.1"
versionName "v3.0"
ndk {
//设置支持的SO库架构
abiFilters 'armeabi' //, 'x86', 'armeabi-v7a', 'x86_64', 'arm64-v8a'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public void onButtonClicked(View view) {

public void openGithub(View view) {
Intent webViewIntent = new Intent(this, WebViewActivity.class);
webViewIntent.putExtra("title", "Github项目主页");
webViewIntent.putExtra("title", "GitHub项目主页");
webViewIntent.putExtra("url", "https://github.com/geeeeeeeeek/WeChatLuckyMoney");
startActivity(webViewIntent);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public boolean onPreferenceClick(Preference preference) {
issuePref.setOnPreferenceClickListener(new Preference.OnPreferenceClickListener() {
public boolean onPreferenceClick(Preference preference) {
Intent webViewIntent = new Intent(getActivity(), WebViewActivity.class);
webViewIntent.putExtra("title", "Github Issues");
webViewIntent.putExtra("title", "GitHub Issues");
webViewIntent.putExtra("url", getString(R.string.url_github_issues));
webViewIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(webViewIntent);
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<resources>
<string name="app_name">微信红包</string>
<string name="app_version">稳定版 v2.3.1</string>
<string name="app_description">∠( ᐛ 」∠)_使用指南∠( ᐛ 」∠)_\n\n ○ 狠戳插件开关\n ○ 回到微信聊天\n ○ 坐等红包进账\n\n 遇到问题, 欢迎通过Github issue反馈~\n https://github.com/geeeeeeeeek/WeChatLuckyMoney</string>
<string name="app_version">测试版 v3.0</string>
<string name="app_description">∠( ᐛ 」∠)_使用指南∠( ᐛ 」∠)_\n\n ○ 狠戳插件开关\n ○ 回到微信聊天\n ○ 坐等红包进账\n\n 遇到问题, 欢迎通过 GitHub Issue 反馈~\n https://github.com/geeeeeeeeek/WeChatLuckyMoney</string>
<string name="service_status">当前辅助服务状态:</string>
<string name="service_name">设置抢红包辅助服务</string>
<string name="preference">偏好设置</string>
<string name="update_error">遇到一些问题,请前往Github手动更新喵(ฅ´ω`ฅ)</string>
<string name="update_error">遇到一些问题,请前往GitHub手动更新喵(ฅ´ω`ฅ)</string>
<string name="update_new_seg1">发现新版本(</string>
<string name="update_new_seg2">),正在为您准备下载( /) V (\\ )</string>
<string name="update_new_seg3">),请进入设置完成更新(ฅ´ω`ฅ)</string>
Expand Down

0 comments on commit 7a62bfc

Please sign in to comment.