Skip to content

Commit df1af94

Browse files
author
gonjay
committed
Fix issue gonjay#25
1 parent dcbd9b1 commit df1af94

File tree

6 files changed

+9
-4
lines changed

6 files changed

+9
-4
lines changed

app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ android {
77
defaultConfig {
88
minSdkVersion 19
99
targetSdkVersion 19
10-
versionCode 20140618
11-
versionName "1.0.6"
10+
versionCode 20140827
11+
versionName "1.0.7"
1212
}
1313

1414
buildTypes {

app/src/main/AndroidManifest.xml

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
<uses-permission android:name="android.permission.VIBRATE"/>
1010

1111
<application
12-
android:debuggable="false"
1312
android:name=".MyApp"
1413
android:allowBackup="true"
1514
android:icon="@drawable/ic_launcher"

app/src/main/java/org/rubychina/app/ui/fragment/NodeFragment.java

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package org.rubychina.app.ui.fragment;
22

3+
import android.annotation.SuppressLint;
34
import android.os.Bundle;
45
import android.support.v4.app.Fragment;
56
import android.view.LayoutInflater;
@@ -18,6 +19,7 @@
1819
/**
1920
* Created by mac on 14-2-6.
2021
*/
22+
@SuppressLint("ValidFragment")
2123
public class NodeFragment extends Fragment {
2224
List<Node> list = new ArrayList<Node>();
2325

app/src/main/java/org/rubychina/app/ui/fragment/PreviewFragment.java

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package org.rubychina.app.ui.fragment;
22

3+
import android.annotation.SuppressLint;
34
import android.content.Context;
45
import android.os.Bundle;
56
import android.support.v4.app.Fragment;
@@ -14,6 +15,7 @@
1415
/**
1516
* Created by mac on 14-2-4.
1617
*/
18+
@SuppressLint("ValidFragment")
1719
public class PreviewFragment extends Fragment {
1820
View v;
1921
WebView web;

app/src/main/java/org/rubychina/app/ui/fragment/topic/TopicViewFragment.java

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package org.rubychina.app.ui.fragment.topic;
22

3+
import android.annotation.SuppressLint;
34
import android.content.Context;
45
import android.graphics.Bitmap;
56
import android.os.Bundle;
@@ -24,6 +25,7 @@
2425
/**
2526
* Created by mac on 14-2-2.
2627
*/
28+
@SuppressLint("ValidFragment")
2729
public class TopicViewFragment extends Fragment {
2830
private TextView title, detail;
2931

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<string name="reply_success">回复成功</string>
4343
<string name="login_success">登录成功</string>
4444
<string name="clear_cache_success">清除成功</string>
45-
<string name="from">\n\n[来自RubyChina4Android](https://play.google.com/store/apps/details?id=org.rubychina.app)</string>
45+
<string name="from"></string>
4646
<string-array name="node_category_arrays">
4747
<item>Ruby</item>
4848
<item>分享</item>

0 commit comments

Comments
 (0)